body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#app {
  width: 100%;
  height: 100%;
  background: #FAF9C7;
  background-attachment: fixed;
  background-position: top; 
  display: flex;
  flex-direction: column;
  /* justify-content: center;  */
  align-items: center;
}

.toppart {
    justify-content: center;
    text-align: center;
}

.first-line {
  position: relative;
  top: 5px;
  text-align: center;
  font-size: 5rem;
  color: #C015FA;
}

.second-line {
  position: relative;
  top: 0px;
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  color: #FA8153;
}
.movement {
  width: 100%;
  padding: 10px 0;
  font-size: 2rem;
  font-weight: 900;
  color: #FA8153;
  background-color: lightgreen;
}

.doors {
  display: flex;
}

.door {
  background: #EB8550;
  width: 400px;
  height: 150px;
  overflow: hidden;
  border-radius: 5px;
  border-style: solid;
  border-width: 10px;
  border-color: green;
  margin: 5px;
}

.boxes {
  transition: transform 1s ease-in-out;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
}

.buttons {
  margin: 1rem 0 2rem 0;
}

button {
  cursor: pointer;
  font-size: 2rem;
  margin: 0 0.2rem;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
}

.info {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
}