/* app.css */
html,
body {
  width: 100vw;
  height: 100vh;
}
.game {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header {
  margin: 0.5rem 0;
}
.subheader {
  margin: 0.5rem 0;
  font-style: italic;
}
.poster {
  height: 70vh;
}
.poster img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2rem;
}
.info {
  text-align: center;
}
.players {
  margin: 0;
  font-size: 18px;
}
