@import url("https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&display=swap");

html,
body {
  background: #181818;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Hedvig Letters Serif', serif;
  color: #fff;
}

header {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

h1 {
  font-weight: 500;
  font-size: 50pt;
  margin: 0;
}

a {
  font-weight: 200;
  font-size: 11pt;
  color: #fff;
  text-decoration: none;
}

a:active {
  color: #fff;
}

button {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20);
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
  outline: none;
}

main {
  width: 100%;
  height: 100%;
}

.item {
  position: absolute;
  width: 250px;
  height: 300px;
  z-index: 1;
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
