body {
  background-color: rgba(130, 170, 200, 1);
  color: black;
  font-family: Verdana;
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
}

/* Waybar */

.waybar {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  margin-left: 20px;
  margin-right: 20px;
}

p {
  margin-left:100px;
  margin-right:100px;
}

.waybar-child {
  width: 200px;
  height: 50px;
  font-size: 2em; 
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(130, 170, 200, 1);
  border-style: none;
  border-radius: 25px;
  border-color: rgba(130, 170, 200, 1);
  text-shadow:
                -2px -2px 0 rgba(255, 255, 255, 1),
                2px -2px 0 rgba(255, 255, 255, 1),
                -2px 2px 0 rgba(255, 255, 255, 1),
                2px 2px 0 rgba(255, 255, 255, 1),
                -3px 0px 0 rgba(255, 255, 255, 1),
                3px 0px 0 rgba(255, 255, 255, 1),
                0px -3px 0 rgba(255, 255, 255, 1),
                0px 3px 0 rgba(255, 255, 255, 1);
  /*box-shadow:2px 5px 0 rgba(0, 0, 0, 0.3);*/
}

#menu {
  box-shadow: -2px 5px 0 rgba(0, 0, 0, 0.3);
  margin: auto;
  margin-left: 0px;
  width: 100px;
}

#menu:hover {
  transform: translate(-2px, 5px);
  box-shadow: none;
}

#menu:active {
  transform: translate(-4px, 10px);
  box-shadow: inset 2px -5px 0 rgba(130, 170, 200, 1),
              2px -5px 0 rgba(0, 0, 0, 0.3);
  border-style: none;
}

#home {
  box-shadow: 0px 5px 0 rgba(0, 0, 0, 0.3);
  position: absolute;
  justify-content: center;
}

#home:hover {
  transform: translate(0, 5px);
  box-shadow: none;
}

#home:active {
  transform: translate(0, 10px);
  box-shadow: inset 0px -5px 0 rgba(130, 170, 200, 1),
              0px -5px 0 rgba(0, 0, 0, 0.3);
}

.sidebar-child {
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 20px;
  height: 20px;
  margin: 10px;
  margin-left: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 1.5em;
  color: transparent;
  border-style: none;
  border-radius: 25px;
  border-color: rgba(130, 170, 200, 1);
  box-shadow: -2px 5px 0 rgba(0, 0, 0, 0.3);
  transition: 
    width 0.3s ease, /* Button expands over 0.3s */
    height 0.3s ease, /* Height changes with width */
    box-shadow 0.1s step-end, /* Shadow pops instantly at end of 0.1s */
    transform 0.3s ease 0.1s, /* Transform starts after shadow pop */
    color 0.3s ease, /* Text appears after expansion */
    text-shadow 0.3s ease; /* Text-shadow appears with text */
    /* Shamelessly ripped from LLM bc tired who cares I'll study it later*/
}

/* Sidebar */

.sidebar-child:hover {
  width: 180px;
  height: 40px;
  transform: translate(-2px, 5px);
  box-shadow: none;
  text-shadow:
                -2px -2px 0 rgba(255, 255, 255, 1),
                2px -2px 0 rgba(255, 255, 255, 1),
                -2px 2px 0 rgba(255, 255, 255, 1),
                2px 2px 0 rgba(255, 255, 255, 1),
                -3px 0px 0 rgba(255, 255, 255, 1),
                3px 0px 0 rgba(255, 255, 255, 1),
                0px -3px 0 rgba(255, 255, 255, 1),
                0px 3px 0 rgba(255, 255, 255, 1);
  color: rgba(130, 170, 200, 1);
  transition:
    color 0.05s ease,
    text-shadow 0.05s ease;
}

.sidebar-child:active {
  width: 180px;
  height: 40px;
  transform: translate(-4px, 10px);
  box-shadow: inset 2px -5px 0 rgba(130, 170, 200, 1),
              2px -5px 0 rgba(0, 0, 0, 0.3);
  border-style: none;
  text-shadow:
                -2px -2px 0 rgba(255, 255, 255, 1),
                2px -2px 0 rgba(255, 255, 255, 1),
                -2px 2px 0 rgba(255, 255, 255, 1),
                2px 2px 0 rgba(255, 255, 255, 1),
                -3px 0px 0 rgba(255, 255, 255, 1),
                3px 0px 0 rgba(255, 255, 255, 1),
                0px -3px 0 rgba(255, 255, 255, 1),
                0px 3px 0 rgba(255, 255, 255, 1);
  color: rgba(130, 170, 200, 1);
  transition:
    color 0.05s ease,
    text-shadow 0.05s ease;
}