body{
    background-color: var(--background-color);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
}

.caixa-conselho{
    border-radius: 5px;
    background-color: var(--advice-card-color);
    display: flex;
    align-items: center;
    width: 470px;
    height: 200px;
    justify-content: center;
    flex-direction: column;
}

.n-conselho{
    text-align: center;
    color: var(--advice-dice-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 17px;
    margin-top: 25px;
}

.conselho{
    color: var(--text-color);
    text-align: center;
    font-size: 20px;
    padding: 15px;
}

.botao{
    background-color: var(--advice-dice-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    transform: translateY(50%)
}

.botao:hover{
    color:aquamarine ;
    box-shadow: 0 5px 15px var(--advice-dice-color);
    cursor:pointer;
}