body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: sans-serif;
  background-image: url("/images/bg.png");
  background-size: cover;
  background-position: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.screen-choice_cake {
  animation: fadeIn 1s ease-in-out;
}

img {
  image-rendering: pixelated;
}

button {
  background: transparent;
  border: none;
}

.choice_cake-container {
  display: block;
  columns: 2;
}

.cake {
  display: flex;
  flex-direction: column;
}

.cake:hover {
  transform: scale(1.1);
}