
/* SUBJECT-CHOOSE */

.main {
  background-color: var(--color-main-bg);
  display: flex;
  height: 87vh;
  flex-direction: column;
}

.header {
  margin-top: 5rem;
  text-align: center;
}

.thin-text {
  font-family: 'Poppins', serif;
  font-size: 16px;
  font-weight: 100;
  color: var(--grey);
  letter-spacing: 1px;
}

.header::after {
  content: '';
  display: block;
  width: 400px; /* Width of the line */
  height: 4px; /* Thickness */
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end)); /* Gradient line */
  margin: 20px auto 0; /* Centered below the text */
  border-radius: 2px; /* Slightly rounded edges */
}
  
/* Animation (Optional) */
.header-section {
  animation: fadeInUp 1s ease-in-out; /* Smooth fade-in effect */
}
  
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-container {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 70%;
}

