  * {
    box-sizing: border-box;
  }
 
  body {
    width: 95%;
    background: #fff;
    color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Ubuntu, "Helvetica Neue", sans-serif;
  }

  section {
    align-content: center;
  }
  h1 {
    font-family: "Lily Script One", sans-serif;
    font-size: 40px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    color: #000;  
  } 
  h3 {
    font-family: "Lily Script One", sans-serif;
    color: #000;
    font-size: 30px;;
  }
 
  /*Side navbar CSS */
  .navbar {
    display: grid;
  }
 
  .sidebar-grid {
    position: fixed;
    top: 0;
    right: 0;
    width: 5vh;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: space-evenly;
  }
 
  .grid-item {
    flex-wrap: wrap;
    align-content: space-around;
    color:#ffffff;
    font-size: 18px;
    transform: rotate(90deg);
    display: inline-flex;
    border: 0;
  }
 
  .grid-item1 {
    flex-wrap: wrap;
    align-content: space-around;
    color:#ffffff;
    font-size: 18px;
    transform: rotate(90deg);
    display: inline-flex;
    height: 33.33%;
    border: 0;
  }
  /*Side-bar Expand properties*/
 
  .containerTab {
    width: 100%;
    padding-right: 1000px;
    text-align: center;
    font-size: 25px;
    cursor: pointer;
    color: white;
  }
  .about-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  }
 
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
 
  /* Closable button inside the image */
  .closebtn {
    float: right;
    color: white;
    font-size: 35px;
    cursor: pointer;
  }
 


  @media only screen and (width < 580px) {  
    .sidebar-grid  {
      width: 3vh;
      justify-content: center;
    }
 
    .grid-item {
      font
    }
  }
  
  /*Header-logo*/
  .logo-img {
    width:20%;
    margin-left: 10px;
  }

  /*header-section*/
  .header-section {
    text-align: center;
    font-size: 37px;
    width: 75%;
    margin: 0 auto;
    top:0;
    }

/*Wave*/
    @keyframes move_wave {
      0% {
          transform: translateX(0) translateZ(0) scaleY(1) 
      }
      50% {
          transform: translateX(-25%) translateZ(0) scaleY(0.55) 
      }
      100% {
          transform: translateX(-50%) translateZ(0) scaleY(1)
      }
  }
  

  .waveWrapper {
      z-index: -1;
      overflow: hidden;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      margin: auto;
      opacity: 75%;
  }
  .waveWrapperInner {
      position: absolute;
      width: 220%;
      overflow: hidden;
      height: 120%;
      top: -900px;
      left: -390px;
      rotate: -25deg;
      background-image: linear-gradient(to top, #5cfcff 7%, #ff2cff 61%);
  }

    @media only screen and (width > 1680px) {  
    .waveWrapperInner  {
      top: -1000px;
    }
  }


  .bgTop {
      z-index: 15;
      opacity: 0.5;
      animation: wave 8s linear infinite;
  }
  .bgMiddle {
      z-index: 10;
      opacity: 0.75;
      animation: wave1 13s linear infinite;
  }
  .bgBottom {
      z-index: 5;
      animation: wave2 18s linear infinite;
  }
  .wave {
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background-repeat: repeat no-repeat;
      background-position: 0 bottom;
      transform-origin: center bottom;
  }
  .waveTop {
      background-size: 50% 100px;
  }
  .waveAnimation .waveTop {
    animation: move-wave 3s;
     -webkit-animation: move-wave 3s;
     -webkit-animation-delay: 1s;
     animation-delay: 1s;
  }
  .waveMiddle {
      background-size: 50% 120px;
  }
  .waveAnimation .waveMiddle {
      animation: move_wave 10s linear infinite;
  }
  .waveBottom {
      background-size: 50% 100px;
  }
  .waveAnimation .waveBottom {
      animation: move_wave 15s linear infinite;
  } 

  /*Transition between section*/
  .shape-overlays {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
  }

  /*My-work-section*/

  /*Footer-section*/

  