
*,
*::before,
*::after {
    box-sizing: border-box;
    
}

body {
    min-height: 100dvh;
    padding: 1rem;
    background-color: black;
    color: rgb(194, 194, 194);
    font-family: "Rubik", sans-serif;
    position: relative;
}

.pergunta {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color: rgb(22, 22, 22);
    padding: 3rem;
    border-radius: 1rem;

    width: 90%;
    max-width: 700px;
    max-height: 90dvh;
    overflow-y: auto;
}


.proceed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pergunta a {
    text-decoration: none;
    color: #c9c9c9;
    background: rgb(31, 31, 31);
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pergunta a:hover{
    background-color: #303030;
}

.choice {
    display: flex;
    gap: 1rem;
}
@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .choice {
        flex-direction: column;
        gap: 1.5rem;
    }

    .warning {
        max-width: 100%;
        padding: 0 1rem;
    }

    .pergunta {
        width: 95%;
        max-height: 90dvh;
    }
}

@media (max-width: 480px) {
    .pergunta {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .pergunta a {
        width: 100%;
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}
