﻿.speaker-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
    margin: 20px 0;
}

    .speaker-container > div:hover > img {
        cursor: pointer;
        opacity: 0.8 !important;
        filter: drop-shadow(0 0 5px #2d4357AA);
        transform: rotate(-2deg) scale(1.01) !important;
        transition: all 100ms;
    }
