*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #ede7ee;
}

.main{
    width: 100vw;
}

.container{
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
}

h2{
    font-family: "Montserrat";
}

h1, p{
    font-family: "Merriweather";
}

.btn{
    padding: 8px 10px;
    background-color: rgb(223, 217, 217);
    color: rgb(106, 68, 141);
    font-weight: bold;
    border-radius: 20px;
    font-size: 15px;
    margin: 6px 2px 3px;
    cursor: pointer;
}

.btn:hover{
    color: white;
    background-color: rgb(118, 91, 145);
}



/*----------------------------------------- Sidebar menu-------------------------------------------*/

.sidebar{
    position: absolute;
    font-family: "Montserrat";
    background-color: rgb(158, 150, 150);
    width: 200px;
    height: 100vh;
    transition: transform 0.3s ease-in;
}

.sidebar nav{
    padding: 25px;
}

.sidebar nav li{
    list-style-type: none;
    font-size: 20px;
    padding: 30px 0;
}

.sidebar nav li a{
    text-decoration: none;
    color: black;
    font-weight: 600;
}



/*----------------------------------------- Main menu-------------------------------------------*/

.infoContainer{
    margin: 120px 30px 0 90px ;
    display: flex;
    flex-direction: row;
}

.devInfo{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hello{
    font-size: 60px;
}

.name{
    font-size: 45px;
    font-weight: bold;
    font-family: "Merriweather";
    margin-bottom: 4px;
}

.about{
    font-size: 30px;
    font-family: "Lato";
}

.moreabout{
    font-size: 20px;
    margin-top: 20px;
}

.buttons{
    margin-top: 30px;
}

.devPic{
    margin: 20px 15px;
}

.devPic img{
    height: 350px;
}



/*----------------------------------------- Contact menu-------------------------------------------*/

.contactform{
    font-family: "Montserrat";
    padding: 50px 35px 0;
    margin-left: 70px;
}

.contactform h1{
    padding: 10px 0;
}

.contactform form div{
    padding: 12px 0;
    flex-direction: column;
    display: flex;
}

.contactform form div input{
    width: 20vw;
    border-radius: 5px;
    margin: 6px 0 0;
    padding: 1px 3px;
}

#emailHelp{
    font-size: 15px;
    color: rgb(78, 32, 109);
    font-weight: 600;
}

#form-check{
    flex-direction: row;
}

#form-check input{
    width: 24px;
    padding: 0;
    margin: 3px 0;
    cursor: pointer;
}

.form-label{
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 600;
}

.form-check-label{
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 600;
}



/*----------------------------------------- Blog menu-------------------------------------------*/

.blogContainer{
    padding:0 26px;
    margin-left: 50px;
}

.blogItem{
    margin: 20px 23px 40px;
}

.blogItem p{
    margin-bottom: 5px;
}

.blogContainer h1{
    margin:50px 26px 30px;
}



/*----------------------------------------- Intro menu-------------------------------------------*/

.intro{
    margin-left: 40px;
    padding: 10px 10px 0 10px;
}
.intro h1{
    margin:30px 15px 12px;
}

.intro h2{
    margin:25px 0 12px;
}

.intro p{
    margin: 12px 15px 0;
}

.skillContainer, .projectContainer{
    padding: 15px;
}

.projectContainer div{
    display: flex;
    flex-direction: row;
}

.projects{
    font-size: 20px;
    font-weight: 900;
    font-family: "Ubuntu";
    text-decoration: none;
    background-color: rgb(222, 222, 228);
    color: rgb(106, 68, 141);
    width: fit-content;
    margin: 5px 30px 0 0;
    padding: 4px;
    border-radius: 10px;
    border: 2px solid black;
}

.projects:hover{
    color: white;
    background-color: rgb(118, 91, 145);
}

.skill{
    width: 300px;
    height: 6px;
    background-color: rgb(118, 91, 145);
    border: 1.2px solid black;
}

.skillItem{
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 3px;
}

.hundred{
    width: 300px;
}

.fifty{
    width: 150px;
}

.eighty{
    width: 240px;
}

.seventy{
    width: 210px;
}



/*----------------------------------------- services menu-------------------------------------------*/

.serviceContainer{
    padding: 30px;
    margin:0 30px;
    display: flex;
    flex-direction: column;
}

.service-bottom{
    display: flex;
    flex-direction: row;
}

.service-top{
    margin:0 30px;
    padding: 20px;
}

.section-title{
    margin-bottom: 10px;
}

.service-bottom{
    margin: 0 10px;
}

.service-item{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    margin: 2px 10px;
}

.service-item h2{
    padding: 10px 0;
}



/*----------------------------------------- hamburger menu-------------------------------------------*/


.sidebarGo{
    transform: translate(-443px, 0px);
    position: absolute;
}

.hamburger{
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
}

.cross{
    margin-left: 150px;
    margin-top: 5px;
    opacity: 0.6;
}

.ham{
    margin: 5px 0 0 5px;
    opacity: 0.8;
}




/*----------------------------------------- Media query menu-------------------------------------------*/

@media (max-width:1120px) {
    .infoContainer{
        margin: 120px 30px ;
        display: flex;
        flex-direction: column;
    }

    .devPic img{
        height: 300px;
    }
}
