@media screen and (max-width: 500px) {
  body {
    margin: 1rem;
    gap: 4rem;
  }
}

@media screen and (max-width: 430px) {
  .about-pic,
  .profile_pic {
    width: 250px;
    height: 250px;
  }

  .section__pic-container {
    width: 250px;
    height: 250px;
  }

  .logo {
    display: none;
  }

  nav {
    justify-content: end;
  }

  footer nav {
    justify-content: space-around;
  }
}

@media screen and (max-width: 675px) {
  .contact-info-upper-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 800px) {
  .about-containers {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 1300px) {
  .section-container {
    flex-direction: column;
    align-items: center;
  }

  .details-container {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  #desktop-nav {
    display: none;
  }
  #hamburger-nav {
    display: flex;
  }
}

@media screen and (max-width: 900px) {
  #profile {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
