@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /**font-family: "Poppins",sans-serif;**/
}

body{
    display: block;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #34495e;
}

.container{
    max-height: 1440px;
    margin: 0 auto;
    background: #5d6d7e;
    padding-bottom: 8rem;
}

.container img{
    display: block;
    width: 80%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.container .card_content{
    display: flex;
    padding: 6rem 2.5rem;
}

.cards{
    width: 100%;
    position: relative;
}

.cards:hover{
    transform: scale(1.05);
}

.cards .title{
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(72, 71, 71, 0.7);
    width: 80%;
    text-align: center;
    padding: 0.4rem;
}

.content{
    background: #fff;
    text-align: center;
    position: absolute;
    padding: 1rem 0;
    font-weight: 600;
    width: 80%;
}

.social_icons{
    display: inline-block;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 2rem;
    align-items: center;
    font-size: 1.5rem;
    justify-content: space-around;
}

.social_icons i{
    color: #34495e;
    cursor: pointer;
    
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
 }



 #mySidenav a {
    margin-top: 50vh;
    position: absolute;
    left: -40px;
    transition: 0.6s;
    padding: 25px;
    width: 60px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    border-radius: 0 5px 5px 0;
  }

  #mySidenav a:hover {
    left: 0;
  }
  
  #about {
    top: 20px;
    background-color: #04AA6D;
  }
  
  #blog {
    top: 80px;
    background-color: #2196F3;
  }
  
  #projects {
    top: 140px;
    background-color: #f44336;
  }
  
  #contact {
    top: 200px;
    background-color: #555
  }

  #face {
    top: 260px;
    background-color: #2196F3
  }