body {
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    to right top,
   #67e6bf,
    #31a9b5,
    #29959f,
    #eeeeee,
    #1a6e76,
    #39bdcb
  );
  background-size: 300% 300%;
  animation: gradientAnimation 3s infinite alternate;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.container {
  max-width: 500px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #fff;
  color: #2575fc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.logo {
  animation: scaleDown 2s ease;
  position :relative;
}

@keyframes scaleDown {
  from {
    transform: scale(10);
  }
  to {
    transform: scale(1);
  }
}
