* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-color: white;
  color: black;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1e1e1e;
    color: #cccccc;
  }
}

#scroll-top {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  #scroll-top {
    width: 20px;
    height: 20px;
    bottom: 15px;
    right: 15px;
  }
}/*# sourceMappingURL=reset.css.map */