html {
  height: 100%;
  background-color: #f0f0f0;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  color: #5d50c6;
  font-family: 'Press Start 2P', sans-serif;
  text-align: center;
}

section {
  background-color: rgba(255, 255, 255, 0.69);
  border-radius: 25px;
  padding: 20px;
  margin: 5px auto;
  display: inline-block; /* keeps it centered with text-align: center on html */
}

h1 {
  font-size: 30px;
  color: #5d50c6;
  margin-bottom: 5px;
}

.subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: bold;
  color: #5d50c6;
  margin-top: 5px;
}

.button {
  height: 50px;
  width: 350px;
  font-family: 'Press Start 2P', sans-serif;
  background-color: rgba(245, 245, 245, 0.6); /* translucent light gray */
  color: #2f2f2f;
  border: 2px solid rgba(47, 47, 47, 0.4);
  border-radius: 10px;
  cursor: pointer;
  margin: 10px 0;
  font-size: 12px;
}


