body {
    background-color: #3C5556;
    display: flex;
    flex-direction: column;
    font-family: "Anek Malayalam", sans-serif;
  }
  
  nav {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
  }
  
  li {
    margin: 5px 15px;
    
  }

  .logo {
    height: 20px;
    margin: 15px 30px;
    /* margin-top 15px margin-right 30px - same thing */
  }
  
  section {
    width: 100%;
    background-color: #b4c1b8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0 0 0;
  }

  .test {
    background-color: #3C5556;

    height: 30px;
    width: 100%;
    margin: 10px;
  }

  .breaking{
    background-color: #3C5556;
    width:300px;
    margin:5px;
    display:flex;
    justify-content: space-evenly;

  }

  .socials{
    display: flex;
  }

  /* icons: */
  .fa-brands{
    margin: 10px;
  }
  /* end of icons here */

  .about-me{
    width:300px;
    margin:5px;
    display:flex;
    justify-content: space-evenly;
  }

  .info{
    max-width: 300px;
    margin: 30px;
  }
  
  /* hero content */
  .hero {
    /* background-color: rgba(142, 177, 86, 0.7);  */
   
    width: 100%;
    /* height: 700px; */
    margin-top: 10px;
    margin-bottom: 50px;
  
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    
  }
  .hero-info {
    margin: 30px;
    max-width: 300px;
    height: 280px;
  }
  
  .hero-image {
    height: 400px;
    width: 400px;
    position: relative;
  }
  


  @media only screen and (max-width: 700px){
    .hero-info{
      max-width: 500px;
    }
    .hero-image {
      visibility: hidden;
      height: 0px;
      float:right;
    }
  }

  /* line underneath paragrph description */
  .styles-break {
    width: 30px;
    height: 5px;
    background-color: #b4c1b8;
    border-radius: 2.5px;
    margin: 30px 0 30px 0;
  }
  .avatar {
    width: 150px;
    height: 150px;
    border-radius: 50px;
    
  }
  
  #name {
    font-size: 100px;
  }
  
  .button {
    border: 0;
    padding: 10px 5px;
    margin-left: 50px;
    margin-bottom: 50px;
    font-size: 20px;
    background-color: #6E7C76;
    width: 80px;
    border-radius: 20px;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
  }
  
  .button:hover {
    background-color: #C2CBB2;
  }
  .button:active {
    box-shadow: inset -2px -2px 3px black;
  }
  
  footer {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    color:white;
  }

  /* how to remove line under links with a tag below: */

  /* A TAGS */
  a {
    text-decoration: none;
    color: black;
  }
  
  a:hover {
    color: pink;
  }
  
  a:active {
    color: darkgray;
  }

  i {
    text-decoration: none;
    color:#3C5556;
  }

  
  /* resume page */
  .resume{
    display:flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  h2{
    text-align: center;
    text-decoration: none;
  }

  nav {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
  }

  


 
 .hamburger{
   border: 0;
   background-color: #b4c1b8;
   margin-top: 30px;
   margin-bottom: -20px;
 }

 .hamburger:focus{
   outline: none;
 }

 .nav-bar{
   display: none;
 }

 .nav-bar.show{
   display:flex;
   flex-direction: row;
   list-style-type: none;
   text-transform: uppercase;
   font-size: 20px;
 }
 
 
 li{
  text-decoration: none;
}

 @media only screen and (min-width: 1000px){
   .hamburger{
     display: none;
   }

   .nav-bar{
    display: flex;
    list-style-type: none;
    text-transform: uppercase;
    font-size: 20px;
    align-items: flex-start;
  }
   
 
 }