body{
    background-color: #fafeff;
    font-family: "Roboto", Arial, sans-serif;
    color: #474a4a;
    margin: 0;
}
p, h1{
    margin:0;
}

.top-bar{
    position: sticky;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 17vh;
    flex-wrap: nowrap;
    align-items: center;
}
.logo{
    font: 3rem "Oswald", Arial, sans-serif;
    color: #474a4a;
    margin-right: 50%;
}
.menu-1 , .footer-menu{
    font-size: 1.5rem;
    height: 80px;
    display: flex;
    gap: 2rem;
    position: absolute;
    align-items: center;
}
.menu-1{
    margin-left: 50%;
    margin-right: 50px;
}
.footer{
    display: flex;
    justify-content: center;
}
.footer-menu{
    height:18vh;
}


.menu-1 >*:hover , .footer-menu >*:hover {
    cursor: pointer;
    border-bottom: 2px solid #474a4a;
}
.menu-2{
    display: none;
    position: relative;
}
#mini-menu{
    position: absolute;
    border: #474a4a solid 1px;
    background-color: #fafeff;
    border-radius: 5px;
    flex-flow: column nowrap;
    justify-content: space-between;
    padding: 10px;
    height: 150px;
    right: 0;
    margin-top: 5px;
    display:none;
}
#mini-menu > *{
    cursor: pointer;
}
.menu-icon{
    cursor: pointer;
    scale: 150%;
}
.section{
    height: 85vh;
}
.header{
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    justify-content: center;
    display: flex;
    flex-flow: column nowrap;
    text-align: center;
}
.header > p{
    font-size:1rem;
}
.header > h1{
    font-weight: 700;
    font-size:3rem;
}
.profile-section{
    display: flex;
    height: 83vh;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.profile-section > .text-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-section > .text-section > p{
    font-size:1.5rem;
}
.profile-section > .text-section > .title{
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.profile-section > .text-section > h1{
    font: 600 3rem "Oswald", Arial, sans-serif;
    color: #de3847;
}
.image-1{
    border-radius: 50%;
    width: 400px;
}
.about-section{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.about-section .text-section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-section > .text-section > p{
    width: 500px;
    font-size: 1.25rem;
}
.about-section .education{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #474a4a;
    border-radius: 25px;
    height: 100px;
    padding: 2rem;
    gap: 5px;
}
.about-section .education .title{
    font-size: 2rem;
    font-weight: bold;
}
.about-section .book-icon{
    fill:#474a4a;
    scale: 150%;
}
.image-2{
    border-radius: 15%;
    width:400px;
}

.experience-section{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.experience-section .language-icon{
    width:10rem;
    margin-bottom: 2rem;
}
.experience-section .language-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.experience-section .language-container h1{
    margin-bottom: 0.5rem;
    font-size: 4vh;
    font-weight: bold;
}

.social-container{
    display:flex;
}
.button-container{
    display: flex;
    gap:10px;
    margin-bottom: 0.5rem;
}
.button-1{
    border: 2px solid #de3847;
    width: 150px;
    height: 40px;
    color: #de3847;
    font-weight: 550;
    font-size: 1rem;
    border-radius: 10px;
    background-color: #fafeff;
}
.button-1:hover{
    background-color: #de3847;
    color: #fafeff;
    cursor: pointer;
}
.button-2{
    width: 150px;
    height: 40px;
    background-color: #044573;
    color: #fafeff;
    font-weight: 550;
    font-size: 1rem;
    border-radius: 10px;
    opacity: 0.8;
}
.button-2:hover{
    opacity: 1;
    cursor: pointer;
}
.social-container > *:hover{
    cursor: pointer;
    fill: #de3847;
}

.projects-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.project{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    width: 60vh;
    border: 1px solid #474a4a;
    border-radius: 50px;
}
.project img{
    width: 50vh;
    border-radius: 50px;
}
.project h1{
    margin-top: 10vh;
    margin-bottom: 10px;
    font-size: 4vh;
}

.contact-section{
    display: flex;
    justify-content: center;
    height: 25vh;
}
.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    width: 70vh;
    height: 12vh;
    border: 1px solid #474a4a;
    border-radius: 50px;
}
.contact-container .icon{
    scale:200%;
    fill:#474a4a;
}
.contact-container p{
    font-size: 1.25rem;
}
.contact-container p:hover{
    cursor: pointer;
    border-bottom: 2px solid#474a4a;
}
.mail ,.linkedin{
    display:flex;
    gap: 20px;
}


/*Tablets*/
@media screen and (max-width:768px){
    .section{
        height: fit-content;
        margin-bottom: 75px;
    }
    .menu-1{
        display: none;
    }
    .menu-2{
        display: block;
    }
    #mini-menu > span{
        font-size: 1.2rem;
    }
    .logo{
        font: 2.3rem "Oswald", Arial, sans-serif;
    }
    .profile-section{
        flex-direction: column;
        gap: 2rem;
    }
    .about-section{
        flex-direction: column;
    }
    .about-section .education{
        height: 100px;
        padding: 1rem;
        gap: 1px;
    }
    .about-section >.text-section{
        align-items: center;
    }
    .about-section >.text-section p{
        font-size: 1.5rem;
        width: 320px;
        text-align: center;
    }
    .image-1 , .image-2{
        width: 200px;
    }
    .experience-section{
        gap: 2rem;
    }
    .experience-section .language-icon{
        width:5rem;
        margin-bottom: 0.5rem;
    }
    .project{
        width: 40vh;
        height: 50vh;
    }
    .project img{
        width: 35vh;
    }
    .contact-container{
        width: 300px;
        height: 150px;
        flex-wrap: wrap;
        gap:0;
    }
    .contact-container p{
        font-size: 1rem;
    }
    .contact-container .icon{
        scale:150%;
    }
    .footer-menu{
        font-size: 1rem;
        gap: 1rem;
    }
}



/*Mobiles*/
@media screen and (max-width:480px){
    .section{
        height: fit-content;
        margin-bottom: 75px;
    }
    .menu-1{
        display: none;
    }
    .menu-2{
        display: block;
    }
    #mini-menu > span{
        font-size: 1.2rem;
    }
    .logo{
        font: 2.3rem "Oswald", Arial, sans-serif;
    }
    .profile-section{
        flex-direction: column;
        gap: 2rem;
    }
    .about-section{
        flex-direction: column;
    }
    .about-section .education{
        height: 100px;
        padding: 1rem;
        gap: 1px;
    }
    .about-section >.text-section{
        align-items: center;
    }
    .about-section >.text-section p{
        font-size: 1.5rem;
        width: 320px;
        text-align: center;
    }
    .image-1 , .image-2{
        width: 200px;
    }
    .experience-section{
        gap: 2rem;
    }
    .experience-section .language-icon{
        width:5rem;
        margin-bottom: 0.5rem;
    }
    .contact-container{
        width: 300px;
        height: 150px;
        flex-wrap: wrap;
        gap:0;
    }
    .contact-container p{
        font-size: 15px;
    }
    .contact-container .icon{
        scale:150%;
    }
    .footer-menu{
        font-size: 1rem;
        gap: 1rem;
    }
}
