body {
  animation: fadeIn 1s ease;
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  cursor: url('custom-cursor.png'), auto;
}
button:hover, .enter-button:hover {
  cursor: url('custom-click.png'), pointer;
}


/* Links */
a {
  color: ghostwhite;
  transition: color 0.3s ease;
}
a:hover {
  color: rebeccapurple;
}
a:visited {
  color: #cecece;
}

/* Container */
.welcome-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.wheel-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; 
  height: 800px;
  z-index: 1; /* make sure it's below */
}

.dharma-wheel {
  width: 100%;
  height: 100%;
  transform-origin: center;
    animation: spin 150s linear infinite;
  animation-direction: reverse;
}

/* Skull button */
.enter-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: auto;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
}
.enter-button:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

/* Effects */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

  .welcome-container {
  animation: fadeIn 1.2s ease;

}
