#cont {
    .tags {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        h3 {
            font-size: 14px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 2.5px 10px;
            border-radius: 5px;
            &::before {
                content: "#";
                margin-right: 2px;
            }
        }
    }
}

@media screen and (max-width: 959px) {
    #cont {
        .tags {
            h3 {
                font-size: 13px;
                padding: 2px 7px;
            }
        }
    }
}