:root {
  --dark-1: rgba(0, 0, 0, 0.9);
  --dark-4: #797979;
}

html {
  font-family: Montserrat;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  background-color: var(--dark-1);
  margin: 0;
}

#main-section {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

#main-section img {
  width: 60%;
  max-width: 300px;
  border-radius: 1000px;
  transition: all 0.3s ease-in-out;
}

#main-section h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0rem;
}

#main-section h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
}

#main-section p {
  color: var(--dark-4);
  font-size: 1rem;
  text-align: center;
  margin-top: 0;
}

#main-section .social {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  overflow-x: auto;         /* Enables horizontal scrolling */
  max-width: 100%;          /* Prevents overflow from the screen */
  padding: 0.5rem;          /* Optional: gives space inside the scroll area */
  -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

#main-section .social::-webkit-scrollbar {
  display: none; /* Optional: hides the scrollbar for cleaner look */
}


#main-section .social i {
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
  #main-section {
    padding: 12px;
  }

  #main-section img {
    width: 70%;
    max-width: 250px;
  }

  #main-section h1 {
    font-size: 1.6rem;
  }

  #main-section h2 {
    font-size: 1.2rem;
  }

  #main-section p {
    font-size: 0.95rem;
  }

  #main-section .social i {
    font-size: 1.5rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  #main-section {
    padding: 10px;
  }

  #main-section img {
    width: 80%;
    max-width: 200px;
  }

  #main-section h1 {
    font-size: 1.4rem;
  }

  #main-section h2 {
    font-size: 1rem;
  }

  #main-section p {
    font-size: 0.9rem;
  }

  #main-section .social {
    gap: 0.6rem;
  }

  #main-section .social i {
    font-size: 1.4rem;
  }
}
