html {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background-color: rgb(38, 38, 38);
}

header {
  background-color: rgb(146, 84, 222);
  width: 100%;
  height: 75px;
  color: white;
  display: flex;
  align-items: center;
}

header img {
  height: 75%;
  margin: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: white;
  text-align: center;
}

.button-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

#skip-button {
  background-color: crimson;
}

.container > * {
  margin: 10px;
}

button {
  background-color: rgb(146, 84, 222);
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:disabled {
  background-color: rgb(146, 84, 222, 0.5);
  cursor: not-allowed;
}
