.genres-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;

}


/* Genre Item Styles */
.genre {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    width: calc(25% - 40px);
    min-width: 150px;
    max-width: 200px;
}

.genre p {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: whitesmoke; 
}


.genre:hover {
    background-color: var(--red); 
    border-radius: 24px;
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    
}


/* Link Styles */
.genre a {
    padding-left: 10px;
    padding-right: 1px;
    color: whitesmoke;
    text-decoration: none; 
}

.genre a:hover {
  color:  var(--black);
}



.logo:visited {
    color: whitesmoke;
}


@media (max-width: 768px) {
    .genre {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .genre {
        width: 100%;
        margin-bottom: 10px;
    }
}
