body {
  height: 100dvh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  /* this is just so the client isn't flashbanged with white before the image loads */
  background-color: #4d3236;
  /* Do you think Nintendo will murder me for using all these assets? */
  background-image: url("/.morshu/assets/background.avif");
  background-size: cover;
  /* gets rid of the scroll bar (webshit dev pro tip) */
  overflow: hidden;
}

.bodybox {
  display: flex;
  justify-content: center;
  align-items: center;
	flex-direction: column;
  gap: 10px;
}

button {
  background-color: LightGreen;
}

button:hover {
  cursor: pointer;
  background-color: #7CCD7C; /* LightGreen but just slightly darker lol */
}

.text {
  font-weight: bold;
  color: white;
  -webkit-text-stroke: 4px black;
  paint-order: stroke fill;
  text-align: center;
}

/* I need this stupid thing to stop the centered img from jumping
 * when the size of the src image suddenly changes */
.img-wrapper {
  position: relative;
  width: 251px;
  height: 230px;
}

.img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
}

/* phone shit */
@media (max-width: 600px) {
  .text {
    font-size: 1.4rem;
    -webkit-text-stroke: 4px black;
  }

  button {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
}
