
body {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: rgb(248,246,215);
  margin: 0;
}


img {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
pointer-events: none;
transition: all 0.2s ease;
}


img.hidden {
  visibility: hidden;
}

.intro {
  display: grid;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}


.button-container {
  text-align: center;
}

button {
  background-color: transparent;
  border-radius: 4em;
  padding: 0.5em 1em;
  cursor: pointer;

}

button:hover {
  background-color: black;
  color: rgb(248,246,215);
}