@charset "urf-8";
@import url("https://fonts.googleapis.com/css2?family=Orbit&display=swap");

/* 화면 초기화 */
* {
  margin: 0px;
  padding: 0px;
  font-family: "Orbit";
  -ms-touch-action: manipulation; /* IE10  */
  touch-action: manipulation; /* IE11+ */
}
ul,
ol,
li {
  list-style: none;
}
a {
  text-decoration: none;
}

button {
  width: 7rem;
  height: 3rem;
  border-radius: 3rem;
  border: 1px solid white;
  background-color: black;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  transition: 350ms;
}

button:hover {
  background-color: white;
  color: black;
}

h1 {
  font-weight: normal;
  font-size: 2rem;
  opacity: 0.8;
  font-weight: bold;
}

h2 {
  font-weight: normal;
  font-size: 1.3rem;
  opacity: 0.8;
  font-weight: bold;
}

h3 {
  font-weight: normal;
  font-size: 1rem;
  opacity: 0.8;
}

img {
  max-width: 60%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  /* background: linear-gradient(45deg, plum, lavender); */
  background-color: white;
}

.loading {
  background-color: white;
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  img {
    max-width: 20%;
  }
}

main .title {
  position: absolute;
  margin: 3vh 3%;
}

.pagination {
  position: absolute;
  right: 5%;
  margin: 5vh 0;
  span {
    font-size: 1.5rem;
  }
}
