@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap'); 
/*  Inseri uma biblioteca de fonte do google */
*{
    margin: 0; /* Zerei margem e padding padrão do navegador para não interferir no que eu queria implementar */
    padding: 0;
    text-decoration: none;
    list-style: none;
}

header{
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004239;
}

body{
    background-color: #006354;
    
    height: 100vh;
}

.content{
    width: 60%;
    display: flex;
    align-items: center;
}

.header-navigation{
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.header-list{
    display: flex;
    width: 100%;
    justify-content: center;
       
}

.header-list li a{
    list-style: none; /* Removi os pontinhos padrão que decoram a lista */
    color: aliceblue;
    cursor: pointer;
    font-size: 19px;
    transition: .5s;
    font-family: 'Kdam Thmor Pro', sans-serif;
    justify-content: space-between;
    margin-inline: 35px;
    letter-spacing: 1px;
}

.header-list li a:hover{
    color: #01c248;
    transform: scale(0.95);
}

#logo{
    width: 50px;
    height: auto;
    border-radius: 10px;
}

footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #004239;
}

.footer-navigation{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    
}

.footer-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-list li a{
    font-family: 'Kdam Thmor Pro', sans-serif;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
    list-style: none;
    font-size: 18px;
    transition: .5s;
}

.footer-list li a:hover{
    color: #01c248;
    transform: scale(0.95);
}

.midias-sociais{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.midias-sociais img{
    width: 40px;
    height: 100%;   
}

#frasesFooter1{
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
    margin-top: 15px;
    letter-spacing: 1px;
}

#frasesFooter2{
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
    margin-top: 5px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

title{
    font-family: 'Kdam Thmor Pro', sans-serif;
}

#voltaProTopo {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 99; /* Fica sobre outros elementos. É relacionado ao Eixo Z do plano cartesiano, referencia a Altura */
    border: none; 
    outline: none; /* Remove borda de foco */
    background-color: #004239; 
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
    transition: opacity 0.3s; /* Efeito de transição */
}

#voltaProTopo:hover { /* Troca a cor ao passar o mouse em cima */
    background-color: #01c248; 
}

/* Início do style da página Sobre mim */
#pictureSobreMim{
    width: 100%;
    height: auto;
    max-width: 65%;
    margin: auto;
    display: block;
    margin-top: 5%;
    margin-bottom: 10%;
    border-radius: 40px;
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 0.3); /* Insere um efeito de sombra a imagem */
}

#tituloSobreMim{
    text-align: center;
    margin-top: 50px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    color: #fff;
    letter-spacing: 1px; /* Inseri um espaçamento entre as letras para melhorar a legibilidade */
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-size: 16px; /* Use unidades relativas como rem ou % */
}