*{
    padding:0;
    margin:0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}


body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

nav {
    position: fixed;
    background: #0082e6;
    height: 80px;
    width: 100%;
}

.checkbtn{
    font-size: 30px;
    color: white;
    line-height: 80px;
    float: right;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}


#check{
    display: none;   
}




label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul {
    float: right;
    margin-right:20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 7px;
}

nav ul li a:hover{
    color:aqua;
    transition: .5s;
    background-color: #9593e7;
}


#main{
    padding: 80px+10vh;
}

@media (max-width:1000px){
    label.logo{
        font-size: 30px;
        padding-left: 50 px;
     }
     nav ul li a{
         font-size: 16px;

     }
}

@media (max-width:1000px){
    .checkbtn{
        display: block;
    }

  
    nav ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        top: 80px;
        left: -100%;
        text-align: center; 
        transition: all .5s; 
    }

    nav ul li{
        display: block;
        margin: 50px 0;
        line-height:30px;
    }

    nav ul li a{
        font-size: 20px;
    }

    nav ul li a:hover{
        background: none;
        color: #0082e6;
    }
    
    #check:checked ~ ul{
        left:0;
    }
    
    #check1:checked ~ ul{
        left:0;
    }

}

.list-item{
    font-weight: bold;
}


h2{
    padding-top: 5vh;
    font-size: xx-large;
    padding-bottom: 2vh;
    color: grey;
}

h3{
    font-size: large;
    padding-top: 3vh;
    color: #0082e6;
    text-align: center;
    padding: 20px;
    line-height: 180%;
    margin: 2vh 8vw 2vh 8vw;
}

section{
    padding-top: 10vh;
}

.main-image{
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /*width: 90%;*/
    border-radius: 5%;
}
  

/*.services-container{
    padding: 10vw;
    margin: 2vw;
    width: 90%;
    display: flex;

}

.services-button{
    background-color: #4CAF50;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: xx-large;
    font-weight: bold;
    border-radius: 5%;
    width: 40vw;
    height: 25vh;
}
*/


.about-me-image{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    border-radius: 10%;
    border: 3px solid #0082e6;
}

p{
    text-align: justify;
    line-height: 200%;
}


.bolded{
    font-weight: bold;
}

.footer{
    width: 80%;
    margin: 2vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    font-size: smaller;
    color: white;
    background-color: #0082e6;
    width: 100%;
    height: 40px;
}

.footer a {
    padding: 12px;
    text-decoration: none;
}


/*nav ul li ul { 
    display: none;
}

.lang-menu:hover ul {
    display:block;
*/

/*nav ul li ul li { 
    display: block;
    background-color: grey;
    padding: 0 3px 0 3px;
    margin: 0;
}

nav ul li ul li a{ 
    color:red;
    display: inline-block;
}
*/


/*.site-nav li  {
    display: inline;
    padding: 5px;
  }

.site-nav ul  {
    display: inline;
}*/
