/* The side navigation menu */
h1{
    font-family: 'Indie Flower', cursive;
}
.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    color: white;
    background-color: #150050;
    position: fixed;
    height: 100%;
    overflow: auto;
  }
  
  /* Sidebar links */
  .sidebar a {
    display: block;
    padding: 16px;
    text-decoration: none;
    color: white;
  }
  
  /* Active/current link */
  .sidebar a.active {
    background-color:#610094 ;
    color: white;
  }
  
  /* Links on mouse-over */
  .sidebar a:hover:not(.active) {
    background-color:  #3F0071;
    color: white;
  }
  
  /* Page content. The value of the margin-left property should match the value of the sidebar's width property */
  div.content {
    margin-left: 200px;
    padding: 1px 16px;
    height: 1000px;
    max-width: 500px;
    margin: auto;
    color: #150050;
    
  }
  
  /* On screens that are less than 700px wide, make the sidebar into a topbar */
  @media screen and (max-width: 700px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
    .sidebar a {float: left;}
    div.content {margin-left: 0;}
  }
  
  /* On screens that are less than 400px, display the bar vertically, instead of horizontally */
  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }
  .img1{
      width: 90%;
      height:80%;
       
     }
    .img2{
      width: 16%;
      height: 50%;
      
    }
  
      
    
  
  .footer {
    padding: 60px; /* Some padding */
    text-align: center; /* Center text*/
    background: #3F0071; 
   color:white;
    width:100%;
  }