/* when screen size is less than 1200px, hide desktop nav, show burger nav */
@media screen and (max-width: 1200px) {
    #desktop-nav {
        display:none;
    }
    #burger-nav {
        display: flex;
    }
}

/* bubble mobile responsiveness */
@media (max-width: 600px) {
  .bubble-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px;
  }

  .bubble {
    position: static;
    width: 70vw;
    height: 70vw;
    max-width: 200px;
    max-height: 200px;
  }

  .bubble h3 {
    font-size: 1em;
  }

  .bubble p {
    font-size: 0.9em;
  }
}
