/* Reseta os estilos padrões */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 1rem;
    color: red;
    margin-bottom: 20px;
}

.verify-text {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    padding-top: 100px;
}

.worthy-btn {
    background-color: #ffcc00;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: bold;
    color: black;
    cursor: pointer;
    margin: 20px 0;
    transition: transform 0.2s;
}

.worthy-btn:hover {
    transform: scale(1.1);
}

.worthy-btn.pulsing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.available-spots {
    font-size: 1.2rem;
    color: red;
}

.watch-link {
    color: #000000;
    text-decoration: none;   
}


/* Responsividade para telas menores */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    @media only screen and (max-width: 600px) {
        h2 {
            font-size: 1.2rem;
        }

        @media only screen and (max-width: 600px) {
           .verify-text {
                font-size: 2rem;
            }    

    .worthy-btn {
        font-size: 2rem;
        padding: 10px 20px;
    }
}
    }
}