body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #f9f9f9;
}
#compass {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
#compass-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center center;
}
.marker {
  position: absolute;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.north {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.south {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.east {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.west {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#info {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.main-head {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.para {
  font-size: 1.2em;
  margin-bottom: 5px;
}

#permissions {
  margin-top: 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
