*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh;
}


header{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: rgb(43, 43, 43);
    color:aliceblue
}


img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}


ul{
    display: flex;
    list-style: none;
    gap: 15px;
}

ul :hover{
    color: rgb(255, 255, 255);
    /*Subir o item*/
    transform: translateY(-5px);
    /*Adicionar sombra*/
    text-shadow: 0px 0px 5px rgb(255, 255, 255);
    /*Velocidade da transição*/
    transition: all 0.3s ease-in-out;
}

/*Cor do link e UL*/
ul a{
    color: aliceblue;
}

#Kali a{
    color: rgb(204, 25, 79);
}

#Ubuntu a{
    color: rgb(255, 81, 0);
}

#Arch a{
    color: rgb(43, 114, 207);
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 90vh;
    background-color: rgb(34, 28, 28);
    color: aliceblue;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: rgb(43, 43, 43);
    color: aliceblue;
}
/* Divs dos lados da página */
#Esquerda{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: rgb(34, 28, 28);
}

#Direita{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: rgb(34, 28, 28);
    gap: 20px;
    
}

#Direita img{
   height: 100px;
   width: 150px;
   border-radius: 0;

}

#Direita h3{
    text-align: center;
}
    /* Arrumar os Cards*/
.Card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
    width: 50%;
    height: 50%;
    background-color: rgb(34, 28, 28);
    /*Bordas*/
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    /*Espaçamento*/
    padding: 20px;
    /*Margem*/
    margin: 20px;
    /*Texto*/
    color: aliceblue;
}

#Kali{
    border: 1px solid  rgb(204, 25, 79);
}

#Ubuntu{
   border: 1px solid rgb(255, 81, 0);
}


#Arch{
    border: 1px solid rgb(43, 114, 207);
}


/*Centralizar o texto na direita do card*/

#Link{
    display: flex;
    justify-content: flex-end;
    align-items:end;
    width: 100%;
    height: 100%;
}

.Card:hover{
   /*Subir o card*/
    transform: translateY(-10px);
    /*Adicionar sombra*/
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
    /*Velocidade da transição*/
    transition: all 0.3s ease-in-out;
}

h3{
    font-size: 2rem;
    color: rgb(255, 255, 255);
}

h5{
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
}

/*Sobre na direita formulario esqueda*/
.sobre{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 100%;
    background-color: rgb(34, 28, 28);
    color: aliceblue;
}




#Quadrado{
    display: flex;
    width: 300px;
    height: 300px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
     
}

#formulario{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 100%;
    background-color: rgb(34, 28, 28);
    color: aliceblue;
    gap: 20px;
}

#Loginic{
    height: 350px;
    width: 350px;
    
}