body {
    background-color: #1e1e1e; /* Dark background color for dark mode */
    color: #ffffff; /* Light text color for better readability */
    font-family: 'Arial', sans-serif;
    margin: 0;
}

h1 {
    font-size: 4vw;
    background: -webkit-linear-gradient(45deg, red, blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    animation: rgbAnimation 0.1s infinite alternate; /* Adjusted duration to 0.1s */
  }
  
  @keyframes rgbAnimation {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.package-box {
  background-color: #333333;
  color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px 0;
  width: 50vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.3s ease; /* Add a smooth transition effect */
}

.package-box:hover {
  transform: scale(1.05); /* Scale up by 10% on hover */
}


a {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 10px;
    background: -webkit-linear-gradient(45deg, orange, purple);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    animation: rgbAnimation 0.1s infinite alternate;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    background-color: #000; /* Black background color */
}



/* Additional styling for headings, paragraphs, etc. */

h2 {
    margin-bottom: 10px;
}

p {
    margin: 0;
    font-size: 1.2vw;
}

@media screen and (max-width: 600px) {
  p {
    font-size: 2.5vw;
  }
}