* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
body {
  min-height: 100vh;
  font-family: sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

main {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
  

.main-title-text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    text-align: center;
    width: 100%;
    z-index: 2;
    font-family: 'WDXL Lubrifont TC', cursive;
}

.main-title-text:hover {
  color: #10dfdf;
  cursor: default;
}

.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
}

.arrow-down {
  width: 40px;
  height: 40px;
  color: white;
  animation: bounce 2s infinite;
  transition: color 0.3s ease;
}

.scroll-arrow:hover .arrow-down {
  color: #10dfdf;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
  
.content {
    position: relative;
    background-color: #111;
    padding: 8rem 2rem;
    min-height: 100vh;
    z-index: 10;
    color: white;
    text-align: center;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
  width: 100%;
  padding: 1rem 0;
  background-color: black;
  border-top: 1px solid #27272a; 
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-group {
  display: flex;
  gap: 1.5rem;
}

.icon-link {
  color: #a1a1aa; 
  transition: color 0.3s ease;
}

.icon-link svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}


.icon-link[href^="mailto"]:hover {
  color: #c41717e1; 
}

.icon-link[href*="linkedin"]:hover {
  color: #10dfdf; 
}

.icon-link[href*="github"]:hover {
  color: #19bd4a; 
}

