@charset "UTF-8";
/* CSS Document */

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  animation: float 3s infinite ease-in-out;
}

.logo {
  width: 200px; /* Adjust logo width as needed */
  animation: spin 3s infinite linear;
}

h2 {
  color: #fff;
  font-size: 2em;
  margin-top: 20px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

