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

body {
  overflow: hidden;
  margin: 0;
  font-family: "Playfair Display", serif;
}

[data-page] {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(#5EC6B3, #BAE5DD);
  display: flex;
  align-items: center;
  justify-content: center;
}

.greetings {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.greetings .greeting {
  font-size: 4vw;
}

.greetings .name {
  font-size: 10vw;
  font-style: italic;
  margin-top: -1vw;
}

[data-page] {
  display: none;
}

[data-page][data-active] {
  display: flex;
}

[data-page="controls"] {
  flex-direction: column;
}

[data-page="controls"] form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

[data-page="controls"] form label {
  font-weight: bold;
}

[data-page="controls"] form input {
  width: 100%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.5);
  border: 10px;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  border-radius: 10px;
}

[data-page="controls"] form button {
  width: 100%;
  background: linear-gradient(25deg, #F2B588, #984D16);
  border: none;
  border: 10px;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  border-radius: 10px;
}

[data-page="greetings"] {
  padding-bottom: 5vh;
}

[data-page="greetings"] .logo {
  display: flex;
  justify-content: center;
  width: 100vw;
  position: absolute;
  left: 0;
  bottom: 10vh;
}

[data-page="greetings"] .logo img {
  width: 15vw;
}

#version {
  font-family: sans-serif;
  position: fixed;
  z-index: 10;
  pointer-events: none;
  font-size: 20px;
  color: #000;
  opacity: 0.1;
  right: 10px;
  bottom: 10px;
}