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

html{
    font-family: sans-serif;
    background-color: whitesmoke;
}

a {
    text-decoration: none;
    color: black;
}

ul{
    list-style: none;
}

a:hover {
    color: #37265F;
    opacity: 100%;
}   





/* TOP NAV */

.header{
    height: 120px;
    padding: 42px;
    padding-left: 15%;
    padding-right: 15%;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center; 
    font-family: 'Lato', sans-serif; 
    margin-bottom: 60px;
    position: fixed;
    z-index: 1;
    top: 0;
     
}

nav ul {
    list-style: none;
    width: 140px;

    display: flex;
    justify-content: space-between;
}

nav li {
    font-size: 14px;
}


.name {
    font-size: 18px;
    color: #37265F;
    
}

.surname {
    opacity: 50%;
}




/*HEADER*/
    
    
.main_wrapper {
    position: relative;
    margin-top: 120px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 400px;
    margin-left: 5%;
}

.name_wrapper {
    display: flex;
    flex-direction: column;
}
    
.title_name {
    color: #F34C53;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 8vw;
    line-height: 1;

    padding-bottom: 20px;
} 

.img_judit_wrapper {
    width: 60%;
}

.img_judit {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
    
.hello_text {
    color: #37265F;
    font-family: 'Lato', sans-serif;
    font-size: 2.8vw;
    font-weight: 500;
    letter-spacing: 0px;
       
}




/*PROJECTS*/

.project {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;

    margin-bottom: 260px;
}     

.content {
    width: auto;
    max-width: 400px;
    margin: 0;
  
}


.project_title{
    color: #37265F;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: bolder;
}

.project_wrapper {
    width: 35%;
    max-width: 600px;

}

.project_image-wrapper {
    width: 35%;

}

.project_image{
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 2px 30px #C0C0C0;
}


.project_subtitle {
    color: #4A4A4A;
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 13px;
}


.descripcion_project {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.8;
    color: #080808;

    margin-bottom: 13px;
}


.learn_more {
    color: #F34C53;
    opacity: 0.5;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    transition: opacity 0.3s ease; /* Adding a smooth transition on opacity */
    } 

    .learn_more:hover {
    opacity: 1;
}


/*RESIZE TABLET*/

@media only screen and (max-width: 992px) {

   .img_judit {
       height: 500px;
   }

    .main_wrapper {
        margin-bottom: 200px;
    }

    .title_name {
        font-size: 9vw;
    }
    
    .project {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        margin-bottom: 200px;
    }

    .project_reverse {
        flex-direction: column-reverse;
    }

    .project_image-wrapper {
        width: 70%;

        padding-bottom: 100px;
    }

    .project_image {
        height: 400px;
    }

    .project_wrapper {
        width: 70%;
    }

}


/*RESIZE MOBILE*/

@media only screen and (max-width: 620px) {

    .main_wrapper{
        margin-bottom: 100px;
    }

    .img_judit {
        height: 300px;
    }

    .title_name {
        font-size: 10vw;
    }

    .hello_text {
        font-size: 3vw;
           
    }
   
    .project_image {
        height: unset;
    }

    .project_image-wrapper {
        width: 80%;
    }

    .project_wrapper {
       width: 80%;
    }

}