body {
  background-color: #c0c0c0;
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  position: relative;
}

.header {
  text-align: center;
  padding-top: 50px;
}

.title {
  font-size: 5em;
  color: #dc5a03;
  text-decoration: underline;
  text-decoration-color: #f5a242;
  animation: neon 1.5s ease-in-out infinite alternate;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.left-content {
  width: 50%;
}

.description {
  color: #000;
  line-height: 1.6;
}

.right-content {
  width: 50%;
}

.pulse {
  max-width: 100%;
  animation: pulse 1s ease-in-out infinite alternate;
}

.rotate-text {
  animation: rotate 10s linear infinite;
}

.subtext {
  text-align: center;
  margin-top: 20px;
  color: #ff00ff;
  font-size: 1.2em;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, transparent 75%, #fda76d 95%);
}

@keyframes neon {
  from {
    text-shadow: 0 0 10px #ff6600, 0 0 20px #ff6600, 0 0 30px #ff6600;
  }
  to {
    text-shadow: 0 0 20px #ff6600, 0 0 30px #ff6600, 0 0 40px #ff6600;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes pulse-mockup {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.extra-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.extra-left-content {
  width: 50%;
}

.extra-left-content img {
  max-width: 100%;
  animation: pulse-mockup 1s ease-in-out infinite alternate;
}

.extra-right-content {
  width: 50%;
  animation: slideInFromRight 1s ease-in-out;
}


@keyframes slideIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}