body {
  margin: 0;
  height: 100vh;
  background: url("assets/bg.png") no-repeat center center fixed;
  background-size: cover; /* fills the screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Cinzel', serif;
  color: white;
  cursor: url("knifecursor.png"), auto;
  overflow: hidden;
}

#apple-container {
  position: relative;
  width: 200px;
  height: 200px;
}

#apple {
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s;
}

#apple:hover {
  transform: scale(1.05);
}

#apple-animation {
  display: none; /* hidden until click */
  width: 200px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

#scary-text {
  margin-top: 30px;
  font-size: 2em;
  transition: transform 0.1s ease-out;
  cursor: pointer;
}
