body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

div#switch-wrapper {
  z-index: 1;
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  color: white;
}

div#switch {
  margin-left: 15px;
  cursor: pointer;
  width: 35px;
  height: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 5px;
  justify-content: flex-start;
  background: white;
}

div#switch div {
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  opacity: 0.35;
}

div#switch.on {
  justify-content: flex-end;
}

div#switch.on div {
  opacity: 1;
}

audio {
  z-index: 1;
}

div#buttons {
  position: fixed;
  z-index: 1;
  bottom: 50px;
  left: 50px;
  display: flex;
  gap: 15px;
}

label {
  border-radius: 100px;
  background: white;
  padding: 8px 17px;
  cursor: pointer;
  display: flex;
}

label input {
  display: none;
}

button {
  display: flex;
  align-items: center;
  gap: 5px;
}

button div {
  width: 15px;
  height: 15px;
  border-radius: 100%;
}

button div:first-child {
  margin-left: 10px;
}
