.img-fluid {
    max-width: 100%;
    height: auto;
  }
  .aboutme-body {
    /* background: #fddb33; */
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    /* height: 400px; */
    /* position: absolute; */
    width: -webkit-fill-available;
    /* height: 70%; */
    /* padding: 50px 0 60px 0; */
    padding: 50px 0px 50px;
  }
  .clear {
    clear: both;
  }
  .aboutme-container {
    background: #fff;
    /* max-width: 920px; */
    /* height: 480px; */
    /* margin: auto; */
    transform: translateY(5%);
    box-shadow: 0px 0px 6px 0px #22222273;
  }
  .aboutme-container .circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .aboutme-container .circles:before {
    content: '';
    position: absolute;
    left: -6%;
    top: -8%;
    width: 200px;
    height: 200px;
    /* background: #fddb33; */
    background: rgb(40, 255, 26);
    border-radius: 50%;
  }
  .aboutme-container .circles:after {
    content: '';
    position: absolute;
    right: -11%;
    bottom: -15%;
    width: 200px;
    height: 200px;
    /* background: #fddb33; */
    background: rgb(40, 255, 26);
    border-radius: 50%;
  }
  .aboutme-container .details-container {
    position: relative;
    display: flex;
  }
  .aboutme-container .details-container .avatar {
    /* margin: 10px auto; */
    position: relative;
    float: left;
    padding: 20px;
  }
  .aboutme-container .details-container .avatar img {
    max-width: 240px;
    margin-top: -70px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 6px 0px #22222273;
  }
  .aboutme-container .details-container .about {
    float: right;
    padding: 20px;
    margin-top: 50px;
  }
  .aboutme-container .details-container .about .name p {
    margin: 0;
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
  }
  .aboutme-container .details-container .about .name h1 {
    /* color: #fddb33; */
    color: rgb(40, 255, 26);
    font-weight: bold;
    margin: 0;
    font-size: 3em;
  }
  .aboutme-container .details-container .about .about-content p {
    line-height: 1.6em;
  }
   .about-content-button {
    border: none;
    color: #222;
    padding: 10px;
    /* background: #fddb33; */
    background: rgb(40, 255, 26);
    cursor: pointer;
    font-weight: bold;
    width: 250px;
    height: 40px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 1px 1px 10px 0px #2222222b;
    transition: 0.2s all;
  }
  .about-content-button:hover {
    box-shadow: 1px 1px 1px 0px #2222222b;
  }
  .about-content-button:focus, .aboutme-container .details-container .about .about-content .about-content-button:active {
    outline: 0;
    box-shadow: 1px 1px 10px 0px #22222280;
  }
  .aboutme-container .skills-aboutme-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    z-index: 1;
  }
   .about-content-button {
    flex: 1;
    padding: 10px;
    margin: 5px;
    border: none;
    color: #222;
    padding: 10px;
    /* background: #fddb33; */
    background: rgb(40, 255, 26);
    cursor: pointer;
    font-weight: bold;
    width: 250px;
    height: 40px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 1px 1px 10px 0px #2222222b;
    transition: 0.2s all;
  }
   .about-content-button:hover {
    box-shadow: 1px 1px 1px 0px #2222222b;
  }
  .about-content-button:focus, .aboutme-container .skills-aboutme-container .about-content-button:active {
    outline: 0;
    box-shadow: 1px 1px 10px 0px #22222280;
  }
  @media only screen and (max-width: 766px) {
    .aboutme-container {
      height: auto;
    }
    .aboutme-container .details-container {
      flex-direction: column;
    }
    .aboutme-container .details-container .avatar img {
      width: 200px;
    }
    .aboutme-container .details-container .about {
      margin-top: 10px;
    }
    .about-content-button {
        padding: 10px ;
        width: 180px;
       

      }
  }
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideUpFromBottom {
    0% {
      transform: translateY(70%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  