:root {
    --neon: #D4FF00;
    --dark-grey: #0E1B0A;
    --blue: #096CFB;
    --grayish: #A0A0A0;
    --light-grey: #B0B0B0;
}

body {
    background-color: var(--neon);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

h1 {
    color: var(--dark-grey);
    font-family: 'Onest', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 10px;
}

.prove-it {
    display: block;
    margin-top: 10px;
    font-size: 70px;
}

p {
    font-family: 'Inter', sans-serif;
    color: var(--dark-grey);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 10px 0;
}

.trivia-text {
    display: block;
    margin-top: 10px;
    color: var(--dark-grey);
}

.btn-custom {
    background-color: var(--blue);
    color: #ededed;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 36.31px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 23px 80px;
    border-radius: 40px;
    border: none;
    transition: background-color 0.3s;
    margin-top: 80px;
}

.btn-custom:hover {
    background-color: #075BB5;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .prove-it {
        font-size: 50px;
    }

    p {
        font-size: 18px;
        line-height: 24px;
    }

    .btn-custom {
        font-size: 18px;
        padding: 15px 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .prove-it {
        font-size: 40px;
    }

    p {
        font-size: 16px;
        line-height: 22px;
    }

    .btn-custom {
        font-size: 16px;
        padding: 12px 30px;
    }
}
