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

html {
  overflow-x: clip;
}

body {
  background: white;
  color: black;
  margin: 0;
  position: relative;
  overflow: hidden;
}

main {
  max-width: 768px;
  margin: auto;
  padding: 4rem 1rem 0;
}

main::before {
  content: "";
  background-image: url("./blood-stains-white-background.jpg");
  z-index: -1;
  position: absolute;
  top: -8rem;
  left: -5rem;
  width: 50vw;
  height: 20rem;
  background-size: cover;
  background-position: bottom;
}

main::after {
  content: "";
  background-image: url("./blood-stains-white-background.jpg");
  z-index: -1;
  position: absolute;
  top: -10rem;
  right: -1rem;
  width: 50vw;
  height: 20rem;
  background-size: cover;
  background-position: bottom;
  transform: rotate(35deg);
}

h1 {
  font-family: cursive;
  font-size: clamp(1rem, 12vw, 5rem);
  line-height: 1.2;
  text-align: center;
}

p {
  font-family: "Courier Prime", courier;
  font-size: 1.5rem;
  color: black;
}

small {
  font-size: 1rem;
  font-family: "Courier Prime", courier;
  display: inline-block;
  margin-top: 1rem;
}

.red {
  color: #ac0002;
}

.block {
  display: block;
}

.year {
  font-size: 45vw;
}

.info {
  background: #f0f0f0;
  padding: 0.5rem;
}

.nosifer {
  font-family: "Nosifer", cursive;
  color: #ac0002;
}

input {
  width: 100%;
  font-family: "Mrs Saint Delafield", cursive;
  font-size: calc(7vw + 2rem);
  border: 0;
  color: black;
}

.input-holder {
  position: relative;
}

.input-holder::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: clamp(0rem, 7vw, 2.5rem);
  left: 0;
  background: black;
}

button {
  font-family: "Courier Prime", courier;
  font-size: 15vw;
  margin: auto;
  display: block;
  width: 100%;
  padding: 3rem 4rem;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 2rem;
  line-height: 0.7;
  font-weight: bold;
}
@media (min-width: 768px) {
  button {
    font-size: 8vw;
  }
}

button svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #ac0002;
  transform: scale(1.5) rotate(-73deg);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  transition: 0.3s;
}
@media (min-width: 768px) {
  button svg {
    transform: scale(0.8) rotate(-73deg);
  }
}

button:hover svg {
  opacity: 1;
}

.game-image {
  margin-top: 2rem;
  margin-inline: auto;
  transform: translateX(-1rem);
  width: 100vw;
  max-width: 768px;
  display: block;
}/*# sourceMappingURL=styles.css.map */