body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: white;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 350px;
  margin: 100px auto;
  padding: 10px;
  background-color: rgba(0, 100, 255, 0.1);
  border: 2px solid #070788;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px blue;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #040477;
  background-color: transparent;
  color: darkblue;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: blue;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #00ffff99;
}

.floating-image {
  position: absolute;
  width: 100px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
footer {
  text-align: center;
  padding: 2rem;
  background-color: #000000;
  font-size: 0.9rem;
  color: blue;
}