* {
  --darkmode-background: #121212;
  --darkmode-foreground-01: hsl(0 0% 19% / 1);
  --darkmode-text: hsl(0 0% 90% / 1);
}

:root {
  background-color: #f4f5f7;
  max-width: 100vw;
  overflow-x: hidden;
}

:root.dark {
  background: var(--darkmode-background);
}

body {
  margin: 0px;
}

#bottom {
  position: sticky;
  bottom: 0px;
  background-color: black !important;
  border: none !important;
  border-radius: unset !important;
  margin: unset !important;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: space-evenly;

}

div.content {
  font-family: sans-serif;
  overflow-x: hidden;
  background-color: white;
  font-size: x-large;
  line-height: 2em;
  margin: 10px;
  border: 1px solid #dadce0;
  padding: 8px;
  border-radius: 10px;
}

:root.dark div.content {
  background-color: var(--darkmode-foreground-01);
  color: var(--darkmode-text);
  border-color: var(--darkmode-background);
}

button {
  height: 65px;
  width: 200px;
  background-color: #202124;
  border-radius: 17px;
  border-color: transparent;
  width: calc(50% - 40px);
  cursor: pointer;
}

button:hover:not(#help) {
  background-color: #313b5a;
}

#scrollToTop {
  background-image: URL(../img/scroll-to-top.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
}

#randomScroll {
  background-image: URL(../img/random-scroll.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 91px;
}
