body {
    background-color: #F7F4E3 ;
    margin: 0;
    padding: 0;
    color: #2B2E65;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
}

header {
    margin: 35px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 500px;
}

ul {
    display: flex;
    margin:0;
    padding: 0;
}

li{
    margin: 10px;
    list-style-type: none;
    border-bottom: 3px solid #F7F4E3;
}

li a {
    color: #5D64D9;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
}

li:hover {
    border-bottom: 3px solid #FE6F61 ;
}

a:active {
    color: #2B2E65;
}

main {
    margin: 35px 70px;
}

h1 {
    color: #5D64D9;
    font-size: 50px;
    font-weight: 600;
    margin: 0;  
}

h2 {
    color: #2B2E65;
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0 0 0 ;
}

h3 {
    color: #5D64D9;
    font-size: 28px;
    font-weight: 500;
    margin: 20px 0 0 0;
    
}

.principal {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.galeria {
    margin: 15px 0 0 20px;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.capa_projeto img  {
    max-width: 100%; 
}

.sobre {
    display: grid;
    grid-template-columns: 1fr 7fr;
}

.texto_sobre {
    margin: 0px;
}

.foto {
    padding: 20px;
}

.foto2 {
    display: none;
    padding: 20px;
}

.foto img {
    justify-self: right;
    max-width: 300px ;
}

.linha_do_tempo {
    padding-top: 40px;
    max-width: 100%;
    height: auto; 
    display: block;
}

.cv  {
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 43px;
    margin:20px 0px;
    border-radius: 30px;
    background-color: #5D64D9;
    font-size: 20px;
    border-style: none;
    cursor: pointer;
    font-weight: 500;
}

.cv a {
    color: #F7F4E3;
    text-decoration: none;
}

.cv:hover {
    background-color: #2B2E65;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grade-projetos {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.projetos article {
    margin-top: 30px;
    max-width: 1080px;
}

.projetos .logo_projeto {
    height: 80px;
}
.projetos a {
    color: #FE6F61;
}

aside {
    position: f;
}

aside div {
    width: 55%;
    border-bottom: 3px solid #C9C9E0;
}

.categoria {
    border-bottom: 3px solid #FE6F61;
}

aside div a {
    color: #2B2E65;
    text-decoration: none;
}

footer {
    background-color: #5D64D9;
    color: #F7F4E3;
    justify-content: center;
    text-align: center;
    padding: 20px;   
}

.redes {
    width: 500px;
    justify-self: center;
    align-content: center;
}
.redes img {
    width: 120px;
    padding: 20px;
}

footer p{
    margin: 0;
}



.formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}

.formulario div {
    margin-top: 20px;
}

input {
    width: 100%;
    border-radius: 10px;
    border-style: none;
    height: 30px;
}

textarea {
    width: 100%;
    border-radius: 10px;
    border-style: none;
}

.formulario button {
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 43px;
    margin:20px 0px;
    border-radius: 30px;
    background-color: #5D64D9;
    font-family: 'Poppins';
    color: #F7F4E3;
    font-size: 20px;
    border-style: none;
    cursor: pointer;
    font-weight: 500;
}

.info {
    display: flexbox;
    text-align: center;
}

.info a {
    color: #5D64D9;
    text-decoration: none;
}

.subir {
    background-color: #FE6F61;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    border-radius: 50%;
    display: flexbox;
    align-content: center;
    justify-items: center;
}
.subir img {
    width: 100%;
}


@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header {
        margin: 20px;
        display: block;
        justify-items: center;
    }
    
    .logo img {
        max-width: 300px;
    }

    li a {
        font-size: 22px;
    }

    main {
        display: flexbox;
        margin: 20px;
    }

    h1 {
        font-size: 30px;
    }

    .principal {
        display: block;      
    }

    .galeria {
        margin: 0;
        grid-template-columns: 1fr 1fr;
    }

    .sobre {
        display: block;
    }

    .foto {
        display: none;
    }
    .foto2 {
        display:block;
    }

    .foto2 img {
        max-width: 100%;
    }

    .linha_do_tempo {
        padding: 0px;
    }

    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 16px;
    }
    .grade-projetos {
        display: block;
    }

    aside {
        display: none;
    }

    .projetos img{
        max-width: 100%;
    }
    .subir {
        display: none;
    }
  
}
    

    



    
      
