body {
  margin: 0;
  padding: 0;
  background: url('gif1.gif') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #fff;
  text-align: center;
  cursor: url('c1.png'), auto; /* Custom cursor */
}

.banner img {
  width: 100%;
  display: block;
}

.vibe-img {
  max-width: 80%;
  border: 5px solid hotpink;
  margin-top: 20px;
  box-shadow: 0 0 20px hotpink, 0 0 40px cyan;
  transition: transform 0.3s ease;
  transform: translateX(-10%);
}

.vibe-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.main-content p {
  margin-top: 20px; /* Add some space between the image and text */
  font-size: 1.5em; /* Adjust the text size if you want */
  font-weight: bold;
}

@media (max-width: 600px) {
  .vibe-img {
    max-width: 95%;
  }

  .main-content p {
    font-size: 1em;
    padding: 8px 12px;
  }
}
