*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

html {
  font-size: 16px;
}

body {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  background-color: black;
}

ul {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1rem;
}

ul::-webkit-scrollbar {
  display: none;
}

ul li:not(:last-child) {
  margin-right: 1rem;
}

ul img {
  max-height: 75vh;
  height: auto;
  border-radius: 1rem;
}

form,
form input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

form button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}