
/* SUBJECT-CHOOSE */

.main {
  background-color: #f8f9fa;
  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: #6c757d;
  letter-spacing: 1px;
}

.bold-text {
  font-family: 'Poppins', serif;
  font-size: 2em;
  font-weight: 600;
  color:#1d3557;
}

.header::after {
  content: '';
  display: block;
  width: 400px; /* Width of the line */
  height: 4px; /* Thickness */
  background: linear-gradient(135deg, #457b9d, #1d3557); /* 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%;
}

.box-container {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem;
    width: 600px;
    height: 200px;
    justify-content: center;
    align-items: center;
    bottom: 3rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-box {
    background-color: #073F8C; /* Elegant muted blue */
    color: #f1faee;
    text-align: center;
    padding: 15px 10px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 0.75rem; /* Rounded edges */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    cursor: pointer;
    transition: all 300ms ease-in-out;
    width: 150px;
}
  
  .button-box:hover {
    background-color: #a8dadc; /* Lighter blue */
    color: #1d3557;
    transform: scale(1.05);
}
