body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f0f8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

#main-container {
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: #228B22;
  text-shadow: 2px 2px #ffffff;
  margin-bottom: 20px;
}

.image-container {
  position: relative;
}

#shire-image {
  width: 80%;
  max-width: 1200px;
  border: 5px solid #fff;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
