@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

html {
  height: 100%;
}

body {
  background-image: url("gfx/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Noto Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
}

select {
  font-family: "Noto Sans", sans-serif;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

#box {
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 16px 24px;
  margin: 0 8px;
  border-radius: 4px;
}

#box p,
#box label {
  margin: 0;
  color: #fff;
}

#box label {
  display: block;
  font-size: 0.8em;
  margin-top: 8px;
}

#buttons {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#launchButton {
  cursor: pointer;
  margin-top: 8px;
  background-color: white;
  border: 0;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
