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

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

.floating-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  max-width: 80%;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.social-icons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.social-icons a img:hover {
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .floating-image {
    width: 300px;
  }

  .social-icons a img {
    width: 32px;
    height: 32px;
  }
}

