/* Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  /* background-color: #fefefe; */
  color: #1d1d1f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Card Styling */
.card {
  position: relative;
  width: 99vw;
  height: 99vh;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 8px #fefefe;
  transition: transform 0.3s ease;
  margin: auto;
}

.bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid white;
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 50%;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #1e90ff,
    /* Dodger Blue */ #00bfff,
    /* Deep Sky Blue */ #00ff7f,
    /* Spring Green */ #32cd32,
    /* Lime Green */ #ffd700,
    /* Gold */ #ff4500,
    /* Orange Red */ #ff1493,
    /* Deep Pink */ #9370db /* Medium Purple */
  );

  opacity: 1;
  filter: blur(40px); /* Increase blur for a smoother effect */
  animation: blob-bounce 4s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-150%, -150%) translate3d(0, 0, 0); /* Adjusted to center blob */
  }

  25% {
    transform: translate(-150%, -150%) translate3d(150%, 0, 0); /* Adjusted for larger card */
  }

  50% {
    transform: translate(-150%, -150%) translate3d(150%, 150%, 0); /* Adjusted for larger card */
  }

  75% {
    transform: translate(-150%, -150%) translate3d(0, 150%, 0); /* Adjusted for larger card */
  }

  100% {
    transform: translate(-150%, -150%) translate3d(0, 0, 0); /* Adjusted to loop back */
  }
}

/* Content Styling Inside Card */
.content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(
    45deg,
    #1e90ff,
    /* Dodger Blue */ #00bfff,
    /* Deep Sky Blue */ #00ff7f,
    /* Spring Green */ #32cd32,
    /* Lime Green */ #ffd700,
    /* Gold */ #ff4500,
    /* Orange Red */ #ff1493,
    /* Deep Pink */ #9370db /* Medium Purple */
  );

  -webkit-background-clip: text; /* For WebKit browsers */
  background-clip: text; /* Standard property for other browsers */
  -webkit-text-fill-color: transparent; /* Make the text transparent to show the gradient */
  color: #1d1d1f;
}

p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.logo-content {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Ensures text is transparent */
  color: #1d1d1f; /* Fallback color */
  opacity: 0.2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}
/* 
@media screen and (max-width: 936px) {
  .blob {
    display: none;
  }
} */
