@import url('./reset.css');
@import url('./variavel.css');

body {
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.escolha {
    width: 400px;
    background: linear-gradient(var(--Dark-Blue), var(--Very-Dark-Blue));
    padding: 2rem;
    border-radius: 30px;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Dark-Blue);
    border-radius: 35px;
    padding: 1rem;
    margin-bottom: 2rem;
}

h1, h2 {
    color: var(--White);
    font-family: var(--font);
    font-size: 26px;
    font-weight: 700;
}

.descricao {
    color: var(--Light-Grey);
    font-family: var(--font);
    font-weight: 400;
    margin: 1rem 0;
}

.numeros {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.num {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Light-Grey);
    background: var(--Dark-Blue);
    font-family: var(--font);
    width: 50px;
    height: 50px;
    border-radius: 35px;
    margin: 1rem 0 2rem 0;
    cursor: pointer;
}

.num:hover {
    color: var(--White);
    background: var(--Orange);
}

.checked {
    color: var(--White);
    background: var(--Medium-Grey);
}

.checked:hover {
    color: var(--White);
    background: var(--Medium-Grey);
}

.checkbox {
    display: none;
}

.submit {
    border: none;
    color: var(--White);
    background: var(--Orange);
    width: 100%;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit:hover{    
    color: var(--Orange);
    background: var(--White);
}

.escolhido {
    width: 400px;
    background: linear-gradient(var(--Dark-Blue), var(--Very-Dark-Blue));
    padding: 2rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resposta {
    font-family: var(--font);
    font-weight: 400;
    color: var(--Orange);
    padding: .5rem 1rem;
    margin: 2rem 0;
    border-radius: 25px;
    background: var(--Dark-Blue);
}

.escolhido .descricao {
    text-align: center;
}

.display-none {
    display: none;
}

.attribution {
    position: absolute;
    bottom: 5px;
    font-size: 11px;
    text-align: center;
    color: white;
}

.attribution a {
    color: white;
    text-decoration: underline;
}

@media screen and (max-width: 425px) {
    .escolha, .escolhido {
        width: 95%;
    }
}