#desktop-container {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: fixed;
    top: 1%;
    left: 0;
    right: 0;
    z-index: 690;
    border-radius: 25px; /* Apply rounded edges with a radius of 10px */

    transition: opacity 0.3s ease, transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1);
}

#desktop-container.transparent {
  opacity: 1; /* Initial opacity when not scrolled */
}  

#desktop-container.transparent.scrolled {
  opacity: 0.7; /* Opacity when scrolled */
}

.navbar {
  justify-content: space-evenly;
}

.navbar-nav {
  justify-content: space-evenly;
}

#navbar-container {
  display: flex;
  flex-direction: column;
}

.parent-nav {
  position: relative;
}

.sticky-button {
  position: absolute;
  bottom: 5%;
  left: 80%;
}

