/* Basic Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #000; /* Black background for spooky effect */
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Main container */
.main-container {
  text-align: center;
  z-index: 1;
}

.main-title {
  font-size: 4rem;
  letter-spacing: 3px;
  color: #ff4500; /* Rebellious orange */
  text-transform: uppercase;
  animation: flicker 1.5s infinite;
}

.description {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

/* Get Started Button */
.get-started-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
  background-color: #ff4500;
  border: 2px solid #ff4500;
  transition: 0.3s;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.7);
}

.get-started-btn:hover {
  color: #ff4500;
  background-color: transparent;
  border: 2px solid #ff4500;
  cursor: pointer;
}

/* Background texture */
.spooky-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://imgur.com/a/yHapCNh') repeat; /* Spooky texture image */
  opacity: 0.2;
  z-index: 0;
}

/* Keyframes for flicker animation */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.5;
  }
}

/* Animation for background texture */
.spooky-texture {
  animation: move-texture 15s infinite linear;
}

@keyframes move-texture {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}
