*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  color: white;
}

body {
  background: url("./assets/background.png") no-repeat center center fixed;
  background-size: cover;
}


#app {
  width: 800px;
  height: 800px;
  margin: 10rem auto;
  position: relative;
}

.marker {
  position: absolute;
  width: 100px;
  left: 350px;
  top: -30px;
  z-index: 2;
}

.wheel {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.logo {
  position: absolute;
  width:150px; /* Adjust as needed */
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3; /* Ensure it stays above the wheel */
  pointer-events: none; /* Prevent interference with clicks */
}

.heading{
  display: flex;
  justify-content: center;
  font-size: 3rem;
  margin: 2rem 0rem;
  flex-direction: column;
  align-items: center;
}

h1{
  margin-bottom: 1rem;
}