body {
  background: #000;
  color: #B0B0B0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  margin: 0;
  overflow: hidden;
  position: relative;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  margin: 10px 10px;
  transition: color 0.3s ease;
}

a:hover {
  color: #B0B0B0;
}

.cloud {
  position: absolute;
  animation: shake 3s infinite;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.link-cloud {
  top: 70%;
}

.image-cloud {
  top: 35%;
  max-width: 90vw;
}

.content-wrapper {
  display: contents;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(-50%) translate(0, 0);
  }
  50% {
    transform: translateX(-50%) translate(2px, -2px);
  }
}

img {
  vertical-align: middle;
  height: 50px;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.2);
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  animation: float 20s infinite;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: fall 10s linear infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100vw, 100vh);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
    align-items: flex-start;
    padding-top: 50px;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .cloud {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    padding: 20px 10px;
  }

  .image-cloud {
    max-width: 100%;
  }

  .image-cloud a {
    margin: 5px;
  }

  img {
    height: 40px;
  }

  a {
    font-size: 16px;
    margin: 8px;
  }
}

@media (max-width: 480px) {
  img {
    height: 32px;
  }

  a {
    font-size: 14px;
    margin: 6px;
  }

  .image-cloud a {
    margin: 4px;
  }
}

