@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 40px;
    overflow-x: hidden;
}

.mask {
    position: fixed;
    background: black;
    z-index: 9998;
}

.mask.top {
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
}

.mask.bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
}

.mask.left {
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 20px;
}

.mask.right {
    top: 20px;
    bottom: 20px;
    right: 0;
    width: 20px;
}

.border {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 5px solid magenta;
    pointer-events: none; /* Allows clicking through the border */
    z-index: 9999;
}

.container {
    text-align: center;
    padding-bottom: 20vh;
}

.centered-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
}

h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

#countdown {
    font-size: 3rem;
    margin-bottom: -15px;
    font-weight: 300;
}

.countdown-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
}

#bullet-points ul {
    list-style: none;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 300;
}

#bullet-points li {
    margin-bottom: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: magenta;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 5px;
    margin-top: 40px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #ff00ffb3;
}

#get-match-button {
    transition: opacity 0.2s ease-out;
}

#student-options {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    justify-content: center;
    margin-top: 40px;
}

#student-options .button {
    margin: 0 10px;
}

.button-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 5px;
    transition: opacity 0.2s ease-out;
}

#how-it-works {
    margin-top: 15vh; /* Pushes it down */
    opacity: 0;
    transition: opacity 1s;
    padding: 50px;
}

#how-it-works.visible {
    opacity: 1;
}

#how-it-works h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

#how-it-works p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.scroll-arrow {
    margin-top: 20px;
    font-size: 3rem;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.5s;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

footer {
    text-align: center;
    padding-bottom: 20px;
}

footer p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
}

footer a {
    color: white;
    text-decoration: underline;
}

footer a:hover {
    color: magenta;
} 