
nav ul {
        list-style-type: none;
        padding: 0;
}
nav li {
         margin: 5px 0;
}
     

.floating-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    margin: 0;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    position: sticky; /* Keep it visible while scrolling */
    top: 0; /* Stick to the top of the screen */
    background-color: #f0f0f0; /* Add background to avoid transparency issues */
    z-index: 10; /* Ensure it's above the container */
    overflow: visible; /* Allow the content to expand without its own scrollbar */
}


.tag {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.5s ease, font-size 0.5s ease;
    border-radius: 5px;
    background-color: white; /* Blue color for tags */
}
.tag:hover {
    transform: scale(1.3);
    font-size: 2em;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

