@media screen and (max-width: 1200px) {
  #navbar {
    display: none;
  }
  
  #burger-nav {
    display: flex;
  }
  
  #profile .picture-container-big {
    width: fit-content;
    height: 450px;
  }
  
  #projects {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  #projects .projects-container  {
    flex-direction: column;
  }
}

@media screen and (max-width: 700px) {
  #profile {
      flex-direction: column;
      align-items: center;
      display: flex;
    }

  #profile img {
      width: fit-content;
      height: 100%;
      border-radius: 50px;
  }

  #profile .picture-container-big {
      width: fit-content;
      height: 400px;
  }

  #about {
      flex-direction: column;
      align-items: center;
      display: flex;
  }
    
  #about img {
    width: fit-content;
    height: 100%;
    border-radius: 50px;;
  }

  #about .about-container {
    width: fit-content;
    flex-direction: column;
    gap: 1rem;
  }

  #about .picture-container {
    width: fit-content;
    height: 400px;
  }  

  #contact {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  #contact .contact-container-outer {
    flex-direction: column;
  }

  #contact .contact-info-container {
    padding: 0;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}