/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Roboto+Mono:wght@300&display=swap');

body{
    position: relative;
    background-color: white;
    margin: 0px auto;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    margin: 0px;
    padding: 0px;
    min-height: 50px;
    position: fixed;
    top: 0px;
    z-index: 1;
    background-color: rgba(242, 242, 242, 0.7);
}

nav{
    margin: 0px 0px;
    padding: 0px;
    width: 100vw;
}

nav ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav li{
    list-style-type: none;
    margin: 0px 2vw;
    font-size: 1.5rem;
    padding: 15px 0px;
}

nav a{
    text-decoration: none;
    padding-bottom: 3px;
    color: rgb(74, 74,74);
    font-weight: bold;
    font-family: monospace;
}

nav a:hover{
    border-bottom: solid 1px rgb(74, 74,74);
}

/* Responsive bar */
.menu-toggle-btn{
    float: left;
    font-size: 20px;
    margin: 0px;
    padding: 0px 10px;
    display: none !important;
    cursor: pointer;
}

@media screen and (max-width:1100px){
    nav li{
        margin: 0px 1vw;
        font-size: 1.2rem;
    }
}

@media screen and (max-width:700px){
    .menu-toggle-btn{
        display: block !important;
        margin: 0px;
        padding: 15px 10px;
    }

    header{
        display: flex;
        flex-direction: column;
        padding: 0px;
        margin: 0px;
    }

    nav ul{
        display: none;
        flex-direction: column;
        align-items: flex-start;
        margin: 0px;
        margin-top: -10px;
        padding: 0px;
    }

    nav ul li{
        border: solid 1px gray;
        background-color: rgb(216, 216, 216);
        display: block;
        width: 100vw;
        margin: 0.5px;
        padding: 10px 10px;
    }

    nav ul li:hover{
        background-color: rgb(163, 163, 163);
    }

    nav ul li a:hover{
        border-bottom: none;
    }

    nav ul.active{
        display: flex;
    }

}

/* Total Container */

.content-container{
    position: relative;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 500px;
}

/* Home */

.home-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 95vh;
}

.left-wrapper{
    width: 25%;
    text-align: center;
}

.right-wrapper{
    width: 75%;
    text-align: center;
}

.right-wrapper .content{
    border-left: solid 1px rgb(74, 74,74);
    display: inline-block;
    text-align: left;
    padding-left: 5vw;
}

.left-wrapper .content{
    display: inline-block;
    text-align: left;
    margin-left: 12vw;
}

.right-wrapper .content p{
    margin: 0px;
    padding: 0px;
    font-size: 3vw;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 300;
    color: rgb(74, 74,74);
}

.left-wrapper .content p{
    margin: 0px;
    padding: 0px;
    font-size: 3vw;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: rgb(74, 74,74);
}

@media screen and (max-width:700px){
    .home-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0px auto;
        padding: 0px;
    }

    .left-wrapper{
        margin: 0px;
        padding: 5vh 12vh;
        border-bottom: solid 1px rgb(74, 74,74);
    }
    
    .right-wrapper{
        margin: 0px;
        padding: 5vh 0px;
    }
    
    .left-wrapper .content{
        margin: 0px;
        padding: 0px;
    }

    .right-wrapper .content{
        margin: 0px;
        padding: 0px;
        border-left: none;
    }

    .right-wrapper .content p{
        margin: 0px;
        padding: 0px;
        font-size: 4.5vw;
    }
    
    .left-wrapper .content p{
        margin: 0px;
        padding: 0px;
        font-size: 5vw;
    }
}

/* about page */
.about-wrapper{
    height: 100vh;
    width: 100vw;
    position: relative;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    min-height: 500px;
}

.center-wrapper{
    width: 80vw;
    margin: 0px;
    padding: 0px;
    display: flex;
}

.about-left-wrapper{
    align-items: center;
    width: 30%;
    display: flex;
    justify-content: center;
}

.img-style img{
    border-radius: 50%;
    width: 15vw;
}

.about-right-wrapper{
    width: 70%;
    display: flex;
    align-items: center;
}

.content-wrapper h1{
    margin: 0px;
    padding: 0px;
    font-family: monospace;
    font-size: 2vw;
    color: rgb(74, 74,74);
    padding-bottom: 10px;
    font-weight: 500;
}

.description p{
    padding: 10px auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2vw;
    font-weight: 500;
    color: rgb(74, 74,74);
}

.skill-list{
    margin: 0px;
    padding: 0px;
}

.skill-item{
    list-style-type: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1vw;
    color: rgb(74, 74,74);
    padding: 10px auto;
}

.fas{
    margin-right: 10px;
}

@media screen and (max-width:700px){
    .center-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-left-wrapper{
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 5vh 0px;
    }
    
    .img-style img{
        border-radius: 50%;
        width: 30vw;
    }
    
    .about-right-wrapper{
        display: flex;
        align-items: center;
    }
    
    .content-wrapper h1{
        margin: 0px;
        padding: 0px;
        font-family: monospace;
        font-size: 3vw;
        color: rgb(74, 74,74);
        padding-bottom: 10px;
        font-weight: 500;
        text-align: center;
    }
    
    .description p{
        padding: 10px auto;
        font-family: 'Open Sans', sans-serif;
        font-size: 2.4vw;
        font-weight: 500;
        color: rgb(74, 74,74);
    }
    
    .skill-list{
        margin: 0px;
        padding: 0px;
    }
    
    .skill-item{
        list-style-type: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 2vw;
        color: rgb(74, 74,74);
        padding: 10px auto;
    }
    
    .fas{
        margin-right: 10px;
    }
    

}

/* experience page */
.job-wrapper{
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 500px;
}

.job-content-wrapper{
    width: 80vw;
    display: flex;
    justify-content: space-between;
}

.job-header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}

.job-header h1{
    margin: 0px;
    padding: 0px;
    font-family: monospace;
    font-size: 2vw;
    color: rgb(74, 74,74);
    font-weight: 500;
}

.experience-wrapper{
    margin: 0px;
    padding: 0px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper{
    display: flex;
    justify-content: space-between;
}

.wrapper .left-side h2{
    margin: 0px;
    padding: 2vw 0px 0vw 0px;
    font-family: 'Roboto Mono', monospace;
    color: rgb(160, 47, 47);
    font-size: 1.2vw;
    font-weight: bolder;
}

.wrapper .left-side a{
    text-decoration: none;
    color: rgb(160, 47, 47);
}

.wrapper .left-side a:visited {
    color: rgb(160, 47, 47);
}

.wrapper .left-side a:hover {
    color: rgb(238, 149, 149);
}


.wrapper .left-side h3{
    margin: 0px;
    padding: 0.1vw 0px 0px 0px;
    font-family: 'Roboto Mono', monospace;
    color: rgb(63, 63, 63);
    font-size: 1.1vw;
}

.wrapper .left-side h4{
    margin: 0px;
    padding: 0.5vw 0px 0px 0px;
    font-family: 'Open Sans', sans-serif;
    color: rgb(95, 95, 95);
    font-size: 1vw;
}

.wrapper .right-side p{
    margin: 0px;
    padding: 2vw 0px 0px;
    font-family: 'Roboto Mono', monospace;
    color: rgb(63, 63, 63);
    font-size: 1.2vw;
    font-weight: 600;
    
}

@media screen and (max-width:700px){
    .job-content-wrapper{
        width: 90%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .job-header h1{
        padding: 5vh 0px;
        font-size: 3vw;
    }

    .experience-wrapper{
        width: 100%;
    }
    
    .wrapper .left-side h2{
        font-size: 2vw;
    }

    .wrapper .left-side h3{
        font-size: 2vw;
    }
    
    .wrapper .left-side h4{
        font-size: 1.8vw;
    }
    
    .wrapper .right-side p{
        font-size: 2vw;     
    }

}


/* Publication */
.article-wrapper{
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 100vw;
    height: 100vh; 
    display: flex;
    flex-direction: column;  
    justify-content: center; 
    min-height: 500px;
}

.article-header{
    text-align: center;
}

.article-header h1{
    margin: 0px;
    padding: 0px 0px 50px 0px;;
    font-family: monospace;
    font-size: 36px;
    color: rgb(74, 74,74);
    font-weight: 500;
    display: inline-block;
}

.article-content{
    margin: 0px auto;
    width: 95%;
}

.art-content-center{
    display: inline-block;
    text-align: left;
}

.article-list{
    margin: 0px;
    padding: 0px 0px;
}

.article-item{
    margin: 0px;
    padding: 0px 0px 20px 10px;
    list-style-type: none;
    font-family: 'Open Sans', sans-serif;
    color: rgb(95, 95, 95);
    font-size: 18px;
}

.article-content .far{
    color: rgb(160, 47, 47);
}

.article-content .far:visited{
    color: rgb(160, 47, 47);
}

.article-content .far:hover{
    color: rgb(238, 149, 149);
}

@media screen and (max-width:700px){
    .article-header h1{
        font-size: 3vw;
    }

    .article-item{
        font-size: 2vw;
    }
}


/* contact */
.contact-wrapper{
    margin: 0px;
    padding: 0px;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    min-height: 500px;
}

.contact-center{
    width: 80vw;
    display: flex;
}

.contact-left-wrapper{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-left-wrapper h1{
    margin: 0px;
    padding: 0px;
    font-family: monospace;
    font-size: 2vw;
    color: rgb(74, 74,74);
    font-weight: 500;
}

.contact-right-wrapper{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.contact-right-center{
    border-left: solid 1px rgb(63, 63, 63);
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-left: 25%;
}

.contact-mail{
    margin: 0px;
    padding: 0px;

}

.contact-mail p{
    margin: 0px;
    padding: 1vw 0px 5vw 0px;
    font-size: 32px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: rgb(63, 63, 63);
}

.contact-socialmedia{
    margin: 0px;
    padding: 1vw 0px 5vw 0px;
}

.contact-socialmedia a{
    color: rgb(63, 63, 63);
    margin: 0px;
    padding: 0px 1.5vw 0px 0px;
}

.contact-socialmedia a:visited{
    color: rgb(63, 63, 63);
}

.contact-socialmedia a:hover{
    color: rgb(160, 47, 47);
}

.contact-resume a{
    border: rgb(63, 63, 63) solid 1px;
    margin: 0px;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 1vw;
    font-weight: 400;
    color: rgb(63, 63, 63);
    border-radius: 10px;
    border-width: 1.5px;
}

.contact-resume a:visited{
   color: rgb(63, 63, 63);
}

.contact-resume a:hover{
    color: rgb(160, 47, 47);
    border-color: rgb(160, 47, 47);
}

@media screen and (max-width:1300px){
    .contact-resume a{
        font-size: 1.4vw;
    }
}

@media screen and (max-width:700px){
    .contact-left-wrapper h1{
        font-size: 3vw;
    }

    .contact-left-wrapper{
        width: 30%;
    }

    .contact-right-wrapper{
        width: 70%;
    }

    .contact-right-center{
        padding-left: 20%;
    }
    
    .contact-mail p{
        font-size: 2.4vw;
    }

    .contact-socialmedia{
        font-size: 2vw;
    }

    .contact-resume a{
        font-size: 1.8vw;
    }

}

/* Footer */
footer{
    margin: 0px;
    padding: 0px;
    position: absolute;
    width: 100vw;
    height: 10vh;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F2F2F2;
}

.footer-wrapper{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-wrapper p, .far{
    margin: 0px;
    padding: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #A1A4A6;
}

@media screen and (max-width:950px){
    .footer-wrapper p, .far{
        font-size: 1.8vw;
    }
}
