html{
    background-color: white;
    
}
body{
    background-color:#e099ff;
    font-family: 'Josefin Sans', sans-serif;
    
}

#img{
    margin-top: 40%;
    margin-left: 50%;
}
nav>ul>li{
    display:block;
}
nav>ul>li>a{
    text-decoration:none;
    padding: 18px;
    display:block;

}
nav>ul>li>a:hover{
    -webkit-transition: width 2s;
    transition: width 2s;
}
h1,h2{
    color:#e099ff;
    opacity: 0.9%;
    text-align: center;
    text-shadow:2px 2px black;
}
.left_side>img{
    height:20%;
    width:35%;
    border:2px solid white;
    border-radius: 90%;
    margin:0 50px 0;
}
.left_side{
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    position:fixed;
    top:0;
    width: 18em;
    text-align: right;
    z-index: 10000;
    left:0;
    padding: 2,5em  2.5em 0.5em 2.5em;
    color:white
}
.right_side{
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 0.5em 0em 0.5em 0em;
    right:0;
    margin-left: 30%;
}
#home_section{
    background-image: url("../images/pic4.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    width:100%;
    height:600px;
    margin-left:2px;
    animation: slide 20s infinite;
}
@keyframes slide{
    25%{
        background: url("../images/pic4.jpg");
    }
    50%{
        background: url("../images/pic3.jpg");
    }
    75%{
        background: url("../images/pic4.jpg");
    }
    100%{
        background: url("../images/pic4.jpg");
    }
}

 #about_me,#skills{
    font-size: 20px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 50px;
    margin-bottom: 5%;
    
 }

 #about_me{
     padding-left:50px;
     box-shadow:0px 2px 4px #e099ff, 0px 2px 4px #e099ff ;
     margin:5%;
 }
#project_screenshots{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 10%;
    margin-bottom: 2%;
}
#project_screenshots2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 10%;
    margin-bottom: 2%;
}

#project_screenshots3{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 10%;
}


 input[type=text], input[type=email], textarea{
     width: 70%;
     padding:15px;
     margin:5px 0 22px 0;
     display: inline-block;
     border:none;
     background-color:#f1f1f1;
     text-align: center;
 }

input[type=text]:focus, input[type=email]:focus {
    background-color: #ddd;
    outline: none;
  }
  


.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 40%;
  }
  
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  .container {
    padding: 2px 16px;
  }

  #skills1, #skills2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 10%;
    margin-bottom: 5%;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #e099ff;
    color: white;
    text-align: center;
}