body{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0D0D0D;
    color: #71D9D9;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 16vh;
    background-color: #000000;
    color: #fff;
}

.header_logo img{
    display: block;
    max-width: 6rem;
    max-height: 6rem;
    width: auto;
    height: auto;
    padding: 1.2rem;
    border-radius: 7px;
}

nav{
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

nav ul{
    list-style: none;
    display: flex;
}

nav li{
    margin-left: 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: .2rem;
    font-weight: bold;
}

nav li:hover{
    background-color: #0D0D0D;
    color: #F20574;
}

h1{
    margin-top: 2rem;
    font-size: 2rem;
    text-align: center;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 88vh;
}



.conteudo{
    margin: 3rem;
    font-size: 1.2rem;
    background-color: #71D9D9;
    color: #F2F2F2;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    text-align: center;
}

#resultado{
    padding: 2.5rem;
    background-color: #F2055C;
    border-radius: 8px;
    margin-top: .4rem;
    text-transform: uppercase;
    font-weight: 500;
}

.texto{
    font-size: 1.4rem;
    width: 4rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #16010b;
    padding: .5rem;
    margin: .5rem;
}

.limpar{
    width: 6rem;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5vh;
    background-color: #F2055C;
    color: #c0f3f3;
    font-size: .8rem;
    padding: 1rem 0;
    margin-top: 1rem;
}

    @media screen and (min-width: 48em){
        nav ul{
            display: flex;
            flex-direction: row;
        }
    } 
