/* START MENU */
#start-menu {
  width: 160px;
  position: absolute;
  z-index: 2;
  left: 0.4%;
  bottom: 4%;
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu-item p {
  margin: 5px 0px 5px 0px;
}

.start-line {
  border-top: 1px solid grey;
  border-bottom: 1px solid white;
  width: 150px;
  margin-left: 5px;
}

.menu-item:hover {
  background-color: #0827f5;
  color: #ffffff;
}

.start-arrow {
  text-align: right;
  height: 8px;
}

.arrows {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 14.5%;
  right: 5%;
  gap: 15.1px;
}

#start-menu a {
  color: #222 !important;
  text-decoration: none;
}

#start-menu a:visited {
  color: #222 !important;
  text-decoration: none;
}

.return-button {
  display: none;
}
