@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

* {
    font-family: 'Raleway', sans-serif;
    background-color: rgb(235, 235, 235);
}

.rrlogo {
    height: 100px;
    width: 100px;
}

.mailicon {
    width: 90px;
    align-self: center;
}

.linkedicon {
    width: 90px;
}

hr {
    width: 50%;
    
    
}

li {
    list-style-type: none;
}

.headcontainer {
    
    display: flex;
    justify-content: space-between;
    align-content: center;
}



.namecontainer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

h1 {
    margin: 0;

}

.navcont nav ul {
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
    
}

.navcont nav ul li {
    font-size: 40px;
    margin-right: 20px;
    
}

.navcont {
    align-self: baseline;
    max-height: 50px;
}

a {
    display: inline-block;
    position: relative;
    color: black;
    text-decoration: none;
    transition: all 300ms;
}

a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }

  a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  a:hover {
    transform: translateY(-0.10em);
  }

  .introsection {
      margin: 50px;
      margin-left: 200px;
      display: flex;
      margin-right: 200px;
      flex-direction: column ;
      /* align-items: center; */
      
  }

  .introsection p {
      font-size: larger;
      
  }

  .introhead {
      font-size: 200px;
  }

  .burgerbun1, .burgerbun2, .burgerbun3 {
    width: 2rem;
    height: 0.25rem;
    background-color: black;
    border-radius: 10px;
    transition: all 0.3s linear;
  }

  .burgermenu {
    margin: 10px;
    width: 2rem;
    height: 2rem;
    /* position: fixed;
    top: 2.5%;
    right: 3%; */
    display: none;
    justify-content: space-around;
    flex-flow: column nowrap;
  }

  .burgerbunsclicked {
      transform: translateX(300%);
    width: 2rem;
    height: 0.25rem;
    background-color: black;
    border-radius: 10px;
    transition: all 0.1s linear;  
  }

  .burgerbunclicked1 {
    transform-origin: 1px;
    width: 2.1rem;
    height: 0.25rem;
    background-color: black;
    border-radius: 10px;
    transform: rotate(45deg);
    transition: all 0.3s linear; 
  }

  .burgerbunclicked3 {
    transform-origin: 1px;
    width: 2.1rem;
    height: 0.25rem;
    background-color: black;
    border-radius: 10px;
    transform: rotate(-45deg);
    transition: all 0.3s linear;
  }

  .burgermenu:hover {
      cursor: pointer;
  }

  .burgernav {
      
      margin-top: 50px;
      display:none;

     
      justify-content: center;
  }

  .burgernavslidein {
    animation: fadein 200ms;
    
    margin-top: 50px;
    display:flex;
    z-index: 2;
    position: absolute;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

  .burgernav nav a {
      font-size: 40px;
  }

  @keyframes fadein {
      from {opacity: 0;}
      to {opacity: 1;}
  }

  .projectshead {
      text-align: center;
      font-size: 40px;
  }

  .projectsec {
      
      margin-left: 200px;
      margin-right: 200px;
  }

  .projectcontainer {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-bottom: 50px;
  }

  .projectsec ul {
      padding-left: 0;
      
  }

  .gitlogo {
      width: 50px;
      
  }

  .gitlogocont {
      display: flex;
      justify-content: center;
  }

  .projectcard {
      width: 525px;
      
  }

  .projectimg {
      height: 442px;
      width: 525px;
  }

  .contactcont {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-content: center;
      /* margin-left:400px;
      margin-right:400px;  */
  }

  .contactlink {
      align-self: center;
  }

  .contactsub {
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-top: 20px;
  }

  .mailtext {
      font-size: larger;
      align-self: center;
      
  }
  

  @media (max-width: 940px) {
      .introhead {
          font-size: 100px;
      }

      .projectsec {
          margin-left: 100px;
          margin-right: 100px;
      }
  }

  @media only screen and (min-width: 1240px) and (max-width: 1500px) {
      .projectimg {
          height: 300px;
          width: 400px;
      }

      .projectcard {
          width: 400px;
      }
  }

  .footertext {
      text-align: center;
      align-self:baseline;
  }

  .footer {
      height: 100px;
      width: 100%;
      display: flex;
      
      align-content: flex-end;
      position: absolute;
  }

  .footercontainer {
      display: flex;
      justify-content: center;
      align-items: flex-end;
width: 100%;
  }

  /* @media only screen and (min-width: 700px) and (max-width: 1240px) */

  @media only screen and (max-width: 700px) {
      .introsection {
        margin-left: 50px;
        margin-right:50px; 
      }

      .projectsec {
          margin-left: 50px;
          margin-right: 50px;
      }

      .projectimg {
          height: 200px;
          width: 250px;
      }

      .projectcard {
          width: 250px;
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .burgermenu {
          display: flex;
      }

      .navcont {
          display:none;
      }
  }