body{
    background-color: hsl(218, 23%, 16%);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: hsl(193, 38%, 86%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

main{
    margin: auto;
}

.container{
    background-color: hsl(217, 19%, 24%);
    font-size: 23px;
    width: 520px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 35px;
    border-radius: 10px;
}

.numero-conselho{
    color: hsl(150, 100%, 66%);
    letter-spacing: 5px;
    font-size: 15px;
    margin-top: 35px;
}

.conselho{
    text-align: center;
    height: 133px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quebra-linha{
    margin-top: 20px;
    height: 16px;
}

.botao{
    background-color: hsl(150, 100%, 66%);
    height: 55px;
    width: 55px;
    border-radius: 50%;
    transform: translateY(53%);
}

.botao:hover{
    box-shadow: 0px 0px 25px 10px hsl(150, 100%, 66%);
    cursor: pointer;
}

footer{
    display: flex;
    justify-content: center;
}