@media (max-width: 768px) {
  body{
    overflow-x: hidden;
  }
  header {
    width: 100vw;
  }
  #navbar-toggle {
    margin-left: 70%;
    font-size: 24px;
    display: flex;
  }

  #nav-list {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    background-color: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 60vh;
    padding: 10px;
    z-index: 1000;
  }

  #nav-list.show {
    display: flex;
  }

  #my-info-box{
    padding-left: 20px;
    text-align: center;
  }

  #social-icons{
    width: 100%;
  }
  #img-container-aboutMe{
    margin-bottom: 12px;
  }
  .what-i-do-card-outer{
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
    /* Place the timelime to the left */
    .timeline::after {
    left: 31px;
    }
    
    /* Full-width containers */
    .container-timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container-timeline::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 0%;
    }
    .middle-contct-details-container, .email-contact-container{
      margin: 10px 7px;
    }
  }