/* when screen size is less than 1200px, show the hamburger menu instead of the desktop one */
@media screen and (max-width: 1200px) {
    #desktop-nav{
        display:none;
    }
    #hamburger-nav{
        display:flex;
    }
}
@media (max-width: 600px) {
  .animated-text {
    font-size: 1.5rem;
  }
  .title {
    font-size: 2rem;
  }
  .section-pic-container{
    height: 300px;
    width: 300px;
  }
  #profile {
    margin: 0 auto;
  }
}