* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

#game-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#game {
  background: url("./images/game-background-today.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: green;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#overlay h1 {
  color: white;
  font-size: 3em;
  margin-bottom: 20px;
}
