@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;800&family=Roboto:wght@100;300&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    background-color: rgb(27, 22, 54);
    max-width: 1200px;
    margin: 0 auto;
}
#minha-foto{
    width: 600px;
 }

header{
    background-color: black;
    padding:10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header .navegacao{
    font-family: 'poppins';
    display: flex;
    gap: 10px;
    align-items: center;
}
 header .navegacao li a {
    padding:10px;
    color:white;
 }
 .navegacao a:hover{
    color: #830c5b;
    transition: 0.2s ease-in-out;
 }
 .section-div {
    background-color: black;
    display: grid;
    grid-template-columns: 1fr 1fr;    
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    padding: 60px;
    border-bottom: solid 1px #771356;
 }

.section-div div {
    margin-top: 120px;
    align-self:start;
    display: grid;
    gap: 30px;
}
.section-div div h2 {
    font-family: 'poppins';
    font-weight: 600;
    color: #f7f7f7;
}

.section-div div p {
    font-family: 'poppins';
    font-weight: 200;
    color: #f7f7f7;
}

.section-div img {
    max-width: 100%;
}

#cor-nome{
    color: rgb(13, 218, 105);
}

.section-secundario{
    background-color: black;
    color: white;
    display: grid;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    padding: 60px;
    border-bottom: solid 1px #771356;
    padding-bottom: 150px;
}

.section-secundario h2 {
    padding-bottom: 50px;
    font-family: 'poppins';
    font-weight: 600;
    color: #f7f7f7;
    text-align: center;
    color: rgb(13, 218, 105);
}

.section-secundario p {
    font-family: 'poppins';

}

.section-skills{
    background-color: black;
    color: white;
    display: grid;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    padding: 60px;
}

.section-skills h2 {
    padding-bottom: 100px;
    font-family: 'poppins';
    font-weight: 600;
    color: #f7f7f7;
    text-align: center;
    color: rgb(13, 218, 105);
}

.section-skills ul {
    font-size: 20px;
    font-family: 'poppins';
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 8px;
    padding-bottom: 5px;
    list-style: none;
}

.section-redes{
    background-color: rgb(27, 22, 54);
    color: white;
    padding:20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.section-redes ul {
    font-family: 'poppins';
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
}

.section-redes li a {
    padding:10px;
    color:white;
}

.section-redes li:hover{
    transform: scale(1.2);
    cursor: pointer; 
}

.section-redes li{
    transition: 0.3s ease-in-out;
}

.section-redes li a:hover {
    color: rgb(13, 218, 105);
}

.section-trajetoria{
    background-color: black;
    color: white;
    display: grid;
    justify-content: space-around;
    padding: 60px;
    border-bottom: solid 1px #771356;
    padding-bottom: 150px;
}

.section-trajetoria h2{
    font-family: 'poppins';
    align-items: center;
    color: rgb(13, 218, 105);
    padding-bottom: 60px;
    text-align: center;
}

.section-trajetoria ul li{
    font-family: 'poppins';
    gap: 20px;
    font-size: 18px;
}

.section-trajetoria ul{
    

}