.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
header {
  text-align: center;
}

header a {
  text-decoration: none;
  color: black;
}
h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

button {
  background-color: #66B3FF;
  color: black;
  padding: 10px 24px;
  font-size: 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

button:hover {
  background-color: #66B3FF;
}

#word-container {
  font-size: 72px;
  font-weight: bold;
  color: blue;

}
@media (min-width:600px) {
  h1 {
    font-size: 48px;
  }

  button {
    font-size: 48px;
  }
}