body {
    background-color: rgb(194, 200, 211);
    margin: 0;
}
/* Estilizando a barra de navegação e arrumando o alimnhamento dos links */
nav {
    top: 0;
    position: fixed;
    width: 100%;
    height: 5%;
    background: linear-gradient(to right, rgb(221, 212, 212), rgb(240, 200, 175));
    display:flex;
    justify-content: space-around;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav li {
    margin: 0 20px;
}

svg {
    width: 50px;
    height: 50px;
    text-decoration: none;
}

nav a {
    color: rgb(121, 115, 115);
    text-decoration: none;
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: 0.5px solid transparent; 
    padding: 5px 10px;
    border-radius: 2px;

}
/*'shadow' serve para deixar o botão com um efeito de sombra quando passar o mouse por cima dele */
.shadow:hover {
    text-decoration: none;
    color: rgb(240, 200, 175);
    box-shadow: 2px 2px 0 0 rgba(141, 123, 123, 0.5);
  background-color: #737373;
    

}
/* Estilizando o cabeçalho */
header {
    text-align: left;
    color: rgb(80, 76, 76);
    font-size: 25px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-top: 150px;
    margin-left: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;

}

header p {
    font-size: 40px;
    margin: 2px;
}


.profissao {
    font-size: 30px;
    color:#737373;
}


#texto-header{
    width: 50%;
    margin-top: 100px;
    margin-left: 100px;
    
}
 /* Além de deixar minha foto com o tamanho que queria, adicionei um efeito para quando passar o mous em cima e nessa parte determino os segundos de transição do efeito  */

#jessica {
    width: 350px;
    height: 350px;
    border-radius: 60%; 
    display: flex;
    float: right;
    margin-right: 100px;
    transition: 500ms linear;
    transition:0.3s ease-in-out;
   
  
}

#jessica:hover {
    transform: scale(1.2);
}


#sobre {
    text-align: center;
    word-wrap: normal;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
    color: rgb(80, 76, 76);
    max-width: 60%;
    margin: auto;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 550px;
 }



#formacao {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 15px;
    color: rgb(80, 76, 76);
    max-width: 80%;
    margin: auto;
    padding: 30px;
    font-size: 30px;
    
}

#formacao ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
    
.icons {
    height: 40px;
    margin: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}
  /*Aqui eu utilizei o smooth para quando apertar em algum botão da nav bar ele ir suavemente até o lugar correspondente*/
.icons:hover {
    transform: scale(1.2);
     transition: 500ms linear;
    transition:0.3s ease-in-out;
}

#projeto {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
    color: rgb(80, 76, 76);
    max-width: 80%;
    margin: auto;
    padding: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.site{
    width: 400px;
    margin: 20px;
    background-color: rgb(240, 200, 175);
    transition: 500ms linear;
    transition:0.3s ease-in-out;

    
}
.site:hover {
    transform: scale(1.2);
    transition: 500ms linear;
    transition:0.3s ease-in-out;
}
/* alinhando meus projetos em cards*/
#cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.card {
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  height: 400px; 
  display: flex;
  flex-direction: column;
  font-size: 30px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); 
}
.card:hover {
    transition: all 0.5s ease-in-out;
    transform: scale(1.1);
     box-shadow: 5px 8px 16px -5px rgba(0,0,0,0.75);
}
.card-img-top {
  width: 380px; 
  height: 200px;
  display: block;
  margin: auto;
}

.card-body {
  padding: 16px;
}

.card-title {
  font-size: 2.00rem;
  margin-bottom: 8px;
}

.card-text {
  font-size: 1.25rem;
  color: #555;
}
#contato {

    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 15px;
    color: rgb(80, 76, 76);
    max-width: 80%;
    margin-top: 400px;
    margin: auto;
    padding: 30px;
} 
/* alinhando os contatos */
#contato ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* alinhando os contatos */
.botao {
    height: 30px;
    width: 100px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    color: rgb(80, 76, 76);
    align-items: space-between;
    border-radius: 10px;
    border-color: transparent;
    background-color: rgb(240, 200, 175);
    margin: 0 10px;
}

.botao:hover {
  background-color: #737373;
  color: rgb(240, 200, 175);
}
