body {
    background-color: #0e1607;
  }

.hover-text {
font-size: 1.8rem;
line-height: 2;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
font-family: sans-serif;
}

.hover-text span {
display: inline-block;
cursor: pointer;
padding: 0 2px;
color: rgb(63, 109, 37);
}

.hover-text span:hover {
color: rgba(191, 255, 73, 0.54);
}

.hover-text span.animate {
transition: color 0.2s ease;
color: rgba(191, 255, 73, 0.54);
animation: float 1.5s ease-in-out infinite;
}

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

.hover-text span.fade {
transition: color 3s ease;
color: rgb(63, 109, 37);
animation: floatFade 1.5s ease-in-out 1;
}

/* Simple floating animation */
@keyframes floatFade {
0% { transform: translateY(-6px); }
100% { transform: translateY(0); }
}

/* Each block holds a square and its label */
.square-block {
position: absolute;
}

/* Green square */
.square {
width: 20px;
height: 20px;
background-color: rgb(63, 109, 37);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Text label below each square */
.square-label {
margin-top: 10px;
color:rgba(191, 255, 73, 0.54);;
font-size: 1.1rem;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
}

/* Random unique positions */
#square1 {
top: 5%;     /* Code - top left */
left: 10%;
}

#square2 {
top: 80%;    /* Design - center area */
left: 45%;
}

#square3 {
top: 5%;    /* Illustration - lower right */
right: 10%;
}
