.header{
    margin: 10px;
    padding: 10px;
    background-color: #e7d9ea;
    display: inline-block;
    border-radius: 4px;
}
#proj1{
    margin: 10px;
    padding: 10px;
    box-shadow: 0 3px 6px #9b9b9b;
    display: inline-block;
}
#proj1:hover{
    box-shadow: 0 4px 8px rgb(95, 95, 95);
    cursor: pointer;
}

.inside_proj{
    display: inline-block;
    margin: 5px;
}
.chip {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f1f1f1;
    margin:10px;
  }
  
  .chip img {
    float: left;
    margin: 0 10px 0 -25px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
  }
.Education-heading h2{
    margin-top: 15px;
    font-size: 40px;
}
.Education-content{
    display: flex;
    margin-top:35px;
}
.ed-card{
    margin:10px;
    padding:10px;
    box-shadow: 5px 5px 10px #999;
    border-radius: 10px;
}
.ed-card h3{
    opacity:0.6;
    line-height: 1.5;
    text-shadow: 5px 5px 10px rgb(105, 99, 99);
    font-size:24px;
    margin-top:10px;
}
.ed-card h4{
    opacity:0.6;
    line-height: 1.5;
    font-size:21px;
}
.ed-card p{
    opacity:0.6;
    color: #3f474d;
    font-size:18px;
}
.ed-list{
    opacity:0.7;
}
.ed-card h3:hover{
    opacity:0.8;
}
.ed-card h4:hover{
    opacity:0.7;
}
.ed-body a{
    opacity:0.8;
}
.ed-body a:hover{
    opacity:1;
}
.achieve-heading h2{
    margin-top: 20px;
    font-size: 40px;
}
.achieve-body{
    display:block;
}
.achieve-card-body{
    padding:10px;
    margin:15px;
}
.bg-primary:hover{
    box-shadow: 5px 5px 10px rgb(99, 118, 204);
    border: 1px solid rgba(3, 44, 133, 0.836);
}
.bg-secondary:hover{
    box-shadow: 5px 5px 10px rgb(105, 99, 99);
    border: 1px solid rgba(54, 52, 52, 0.836);
}
.bg-success:hover{
    box-shadow: 5px 5px 10px rgb(57, 167, 94);
    border: 1px solid rgba(4, 90, 37, 0.836);
}
.bg-danger:hover{
    box-shadow: 5px 5px 10px rgb(209, 87, 65);
    border: 1px solid rgba(107, 5, 5, 0.836);
}
.achieve-body a{
    margin-bottom:10px;
}

.topnav {
    background-color: #333;
    overflow: hidden;
    width: 100%;
    position: fixed;
    z-index: 999;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left ;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Add an active class to highlight the current page */
  .active {
    background-color: #4CAF50;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  
  /* Add a dark background on topnav links and the dropdown button on hover */
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
  }
  
  /* Add a grey background to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Show the dropdown menu when the user moves the mouse over the dropdown button */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 800px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: fixed;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }
  }