body {
  background-image: url('https://applestalksarejusttwigssociety.pepperonieyed.uk/images/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#appleText {
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}
#stalksText {
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
#areText {
  opacity: 0;
  animation: fadeIn 1s 3s forwards;
}
#justText {
  opacity: 0;
  animation: fadeIn 1s 4s forwards;
}
#twigsText {
  opacity: 0;
  animation: fadeIn 1s 5s forwards;
}
#societyText {
  opacity: 0;
  animation: fadeIn 1s 6s forwards;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0) !important;
}
