/* style.css */

body {
  margin: 0;
  padding: 0;
  font-family: "Dongle", sans-serif;
  background-color: #f0f0f0; /* Set background color */
}

.intro-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Make containers full screen height */
}

.intro-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px; /* Add round corners to the image */
}

.game-title {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #666;
  text-align: center;
}

button {
  padding: 10px 20px;
  font-family: "Supermercado One", sans-serif;
  font-size: 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2c3e50; /* Darker background color on hover */
}

#start-btn {
  position: absolute;
  left: 50%;
  top: calc(5/7 * 100%);
  transform: translateX(-50%);
  background-color: #3498db; /* Turquoise color for start button */
  color: white;
}

.notice {
  position: absolute;
  bottom: 10px;
  color: #666;
}