html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1 {
  font-size: 3rem;
  margin: 2rem 0;
}

p {
  font-size: 1.5rem;
  line-height: 1.5;
}

img {
  width: 100%;
  max-width: 300px;
  margin: 2rem 0;
}

.image-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

a {
  text-decoration: underline;
  color: #000;
}

@keyframes swim {
  0% {
    transform: translatex(-200vw);
  }
  100% {
    transform: translatex(0);
  }
}

.swim {
  animation: swim 2s ease-in-out 1 forwards;
}

.swim-out {
  animation: swim 2s ease-in-out 1 reverse forwards;
}

@media (prefers-color-scheme: dark) {
  html {
    background-color: #000;
    color: #fff;
  }

  a {
    color: #fff;
  }
}
