body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: monospace;
}

#game-container {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: black;
}

#title-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  color: white;
}

#game-screen {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#counter {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
}

.game-element {
  position: absolute;
  font-size: 24px;
}
#home {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 2;
}


#character {
  content: "🚶🏽‍♀️";
  font-size: 96px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.1s ease-out;
    width: 80px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8B4513;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}

button:hover {
  background-color: #45a049;
}
