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

html {
  height: 100%;
}

body {
  background-color: black;
  display: grid;
  place-items: center;
  height: 100%;
}

p {
  font-family: fantasy;
  color: rgb(162, 162, 162);
  font-size: 2rem;
  text-align: center;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../asset/img/room/outside/outside_400x225.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#black-overlay {
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.85;
}

img {
  width: 600px;
  height: auto;
}

#wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fade-in 1s forwards;
}

#start img{
  width: 200px;
  height: auto;
  opacity: 0.7;
  transition: all 0.2s;
}

#start img:hover {
scale: 0.97;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    scale: 0.5;
  }

  60% {
    opacity: 1;
    scale: 1.1;
  }

  100% {
    opacity: 1;
    scale: 1;
  }
}