*{
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
    font-family: 'Montserrat', sans-serif;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(205,209,228,0.3),rgba(205,209,228,0.3)),url(images/flower.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background: white;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #a2cffe;
    display: block;
    margin: auto;
    transition: 0.3s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    background: rgba(232,236,241,0.7);
    width: 100%;
    height: 20%;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 40px 0;
}
.text-box h1{
    font-size: 62px;
    font-family: 'Lora', serif;
    font-weight: 400;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 16px;
    font-family: 'Lora', serif;
    font-weight: 500;

}
.contact-btn{
    display:inline-block;
    text-decoration:  none;
    color: black;
    border: 1px solid #000000;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-family: 'Lora', serif;
    font-weight: 500;
}
.contact-btn:hover{
    background: black;
    color: white; 
}
nav .fa{
    display: none;
}

@media(max-width: 932px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: absolute;
        background: rgba(205,209,228);
        height: 100vh;
        width: 150px;
        top: 0;
        left: -200px;
        text-align: right;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: black;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    .nav-links ul{
        padding: 30px;
    }
}

@media(max-width: 1366px){
    .text-box{
        height: 30%;
    }
}

/* about section */
.about{
    width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}
h1{
    font-size: 36px;
    font-weight: 400;
    font-family: 'Lora', serif;
}
p{
    color: black;
    font-size: 14 px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
}

.abt-links{
    display: flex;
    margin-left: 17%;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.abt-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.abt-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 15px;
}
.abt-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #a2cffe;
    display: block;
    margin: auto;
    transition: 0.3s;
}
.abt-links ul li:hover::after{
    width: 100%;
}

@media(max-width: 932px){
    .about{
        width: 80%;
    }
    .abt-links{
        margin-right: 5%;
    }
}

@media(max-width: 1366px){
     .abt-links{
        margin-left: 5%;
    }
}

/* education section*/
.education{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 150px;
}

.row-edu{
    padding-top: 25px;
    display: flex;
    align-items: center;
    margin-left: 25%;
    margin-right: 5%;
}


.col1-edu{
    text-align: left;
    margin-right: 5%;
    margin-left: 5%;
}

.col2-edu{
    text-align: left;
    margin-right: 5%;
    margin-left: 5%;
}

@media(max-width: 932px){
    .row-edu{
        justify-content: center;
        display:block;
        margin-right: 20%;
    }
}

@media(max-width: 1366px){
     .row-edu{
        margin-right: 20%;
    }
}

/* skills section*/
.skills{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    background-image: url(images/tech.webp);
    background-size: cover;
    padding-bottom: 50px;
}
.row1-skills{
    margin-top: 3%;
    display: flex;
}
.row2-skills{
    margin-top: 3%;
    display: flex;
}

.col-skills{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

@media(max-width: 932px){
    .skills{
        background-size: contain;
    }
}

/* projects section*/
.projects{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 150px;
    background: rgba(205,209,228,0.2);
}
.hangman{
    display: flex;
    margin-top: 5%;
    text-align: right;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}
.hang-img{
    align-content: left;
}
.hang-txt{
    margin-top: 20%;
}
.trolley{
    display: flex;
    align-content: left;
    margin-top: 5%;
    text-align: left;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}
.trol-img{
    display: flex;
}
.trol-txt{
    margin-top: 5%;
}
.sensor{
    display: flex;
    margin-top: 5%;
    text-align: right;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}
.sen-txt{
    margin-top: 5%;
}
.sens-img{
    display: flex;
}

@media(max-width: 932px){
    .hangman{
        display: block;
        margin-left: 0;
        margin-right: 0;
        text-align: right;
        flex-wrap: wrap-reverse;
    }
    .hang-txt{
        margin-top: 0;
        width: 100%;
    }
    .hang-img{
        display: flex;
        align-self: center;
        width: 100%;
        overflow-x:scroll; 
    }
    .hang-col{
        display:flex;
        flex-direction: row-reverse;
    }
    .trolley{
        display: block;
        align-content: left;
        margin-top: 5%;
        text-align: left;
        justify-content: space-between;
        margin-left: 0;
        margin-right: 0;
    }
    .trol-img{
        display: block;
        overflow-x: scroll;
    }
    .sensor{
        display: flex;
        flex-direction: column-reverse;
        margin-left: 5%;
        margin-right: 0;
    }
    .sens-img{
        display:block;
        overflow-x: scroll;
    }
}

@media(max-width: 1366px){
    .hangman{
        display: flex;
        margin-top: 5%;
        text-align: right;
        justify-content: space-between;
        margin-left: 5%;
        margin-right: 5%;
    }
    .hang-img{
        align-content: left;
    }
    .trolley{
        width: 90%;
        margin-left: 5%;
    }   
    .trol-img{
        display:flex;
        align-content: right;
    }
     .sens-img{
        display:flex;
        align-content: right;
    }
}

/* experience section*/
.experience{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.jobs{
    text-align:left;
}
.tenren{
    padding: 20px;
}

.lassonde{
    padding: 20px;
}
.memo{
    padding: 20px;
}
.easa{
    padding: 20px;
}

/* club section */
.clubs{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.all-clubs{
    text-align: left;
}

.easa1{
    padding: 20px;
}
.easa2{
    padding: 20px;
}
.saa1{
    padding: 20px;
}
.saa2{
    padding: 20px;
}
.bhc{
    padding: 20px;
}


/* contact section */
.contact{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
    background: rgba(205,209,228, 0.3)
}
h3 {
    font-family: 'Lora', serif;
    font-weight: 400;
}
.row-contacts{
    margin-top: 1%;
    display: flex;
}
.col-contacts{
    margin-left: 27%;
    display: flex;
}
h5{
    padding-top: 6px;
    padding-left: 10px;
}
@media(max-width: 932px){
    .row-contacts{
        margin-right: 20%;
        display: block;
    }
    .col-contacts{
        display: block;
    }
}
@media(max-width: 1366px){
    .col-contacts{
        margin-left: 25%;
    }
}