* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}

::-moz-selection {
  background-color: rgba(238, 238, 238, 0.5019607843);
  color: #222;
}

::selection {
  background-color: rgba(238, 238, 238, 0.5019607843);
  color: #222;
}

.container {
  max-width: 1300px;
  width: calc(100% - 30px);
  margin: auto;
}

body {
  font-family: "IBM Plex Serif", serif;
}
body #modal {
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0px;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
}
body #modal.modalShow {
  pointer-events: auto;
  opacity: 1;
}
body #modal form {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
}
body #modal form #formTop {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
body #modal form #formTop a {
  display: flex;
  align-items: center;
  color: #777;
  border: 1px solid #ccc;
  text-decoration: none;
  padding: 0 15px;
  border-radius: 100px;
  height: 24px;
}
body #modal form #formTop a:hover {
  color: #222;
  border: 1px solid #999;
}
body #modal form #formTop button {
  display: flex;
  border: none;
  background: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
body #modal form #formTop button:hover {
  opacity: 1;
}
body #modal form video {
  width: 100%;
  cursor: pointer;
}
body #modal form h2 {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  color: #ddd;
  font-style: italic;
  font-size: 60px;
  text-align: center;
  line-height: 50px;
}
body main {
  height: 100vh;
  overflow-y: scroll;
}
body main a {
  text-decoration: none;
  font-weight: 700;
  display: block;
  font-style: italic;
  font-size: 24px;
  margin: 50px 10px;
  color: #222;
  text-align: center;
}
body main a span {
  transition: 0.3s;
  display: inline-block;
}
body main #pics {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
body main #pics img {
  width: 100%;
  max-width: 300px;
  opacity: 0;
  transition: opacity 0.6s;
}
body main #pics img.loaded {
  opacity: 1;
}
body main #pics img:hover {
  cursor: pointer;
}
body main p {
  text-align: center;
  margin: 50px 20px;
  font-style: italic;
  color: #222;
}

@media (max-width: 600px) {
  body #modal form h2 {
    font-size: 40px;
  }
}/*# sourceMappingURL=style.css.map */