*{
    margin: 0;
    padding: 0;
}

.pagina{    
    font-family: 'Red Hat Display', sans-serif;
    background-color: rgb(7, 5, 15);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 55%;
    /* margin-left: 35px; */
    margin-top: -50px;
    display: flex;
    margin-left: 350px;
}

.voltar{
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid whitesmoke;
    border-radius: 3px;
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 90px;
    transition: 0.2s ease;
}

.voltar:hover{
    background: white;
    color: black;
    transition: 0.5s;
}