#display-nav-button, #share-button, #fav-button {
  position: fixed;
    top: 64px;
    cursor: pointer;
    background-color: rgb(51, 76, 103);
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 20px;
    width: 40px;
    height: 20px;
    border-radius: 9999px;
    z-index: 10;
    font-family: "Rubik Dirt", system-ui;
  font-style: normal;
  z-index: 21;
}

#display-nav-button {
  left: 15px;
  font-weight: 600;
  font-size: 1.2rem;
}

#share-button {
  left: 100px;
  font-weight: 400;
  font-size: 1.4rem;
}

#fav-button {
  left: 185px;
  font-weight: 400px;
  font-size: 2.2rem;
}

#side-bar {
  position: fixed;
  display: none;
  flex-direction: column;
  gap: 20px;
  width: 110px;
  text-align: center;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(20, 20, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: rgb(230, 230, 230);
  padding-top: 150px;
  justify-items: center;
  z-index: 20;
}

#d:hover, #h:hover, #g:hover, #m:hover, #q:hover, #t:hover, #b:hover, #s:hover {
  width: min-content;
  padding: 10px;
  margin: -10px auto;
  background-color: rgb(121, 142, 174);
  border-radius: 999px;
  cursor: pointer;
}

#display-nav-button:hover, #share-button:hover, #fav-button:hover {
    background-color: rgb(121, 142, 174);
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 5px;
    font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}

@media print {
  #display-nav-button, #share-button, #fav-button {
    display: none;
  }
}

@media screen and (max-width: 480px) {
    #display-nav-button {
      padding: 15px;
      left: 20px;
    }
    #share-button {
      padding: 15px;
      left: 100px;
    }
    #fav-button {
      padding: 15px;
      left: 180px;
    }
  }