body {
background: 
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('../img/starsidk.gif');
    background-size: cover;
}
.containerli {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}


.contentli   {
  display: flex;
  flex-direction: column;
  position: absolute; 
  color: #f5f5f5;

}

.tag-cloud {
  display: flex;
  flex-wrap: wrap; 
  gap: 12px 18px; 
  align-items: center;
  justify-content: space-between; 
  padding: 10px 0;
}

.tag-cloud span {
  display: inline-block;
  cursor: normal;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tag-cloud span:hover {
  transform: scale(1.25); 
  color: #fff; 
  text-shadow: 0 0 7px #ffffff; 
}


@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

