.music-images-container {
    display: flex;
    justify-content: space-between;
    gap: .7rem;
}

.music-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    width: 40%;
}

.music-images-container>div:last-child {
    margin-top: 16rem;
}

.music-sect {
    /* display: none; */
    position: absolute;
    /* width: 100%; */
}

.matcher {
    position: absolute;
    height: 25px;
    width: 28.3%;
    bottom: 60%;
    z-index: -100;
}

.matcher-l {
    left: 100%;
}

.matcher-r{
    left: -28%;
    transform: rotate(180deg);
}

.matcher>div:nth-child(1) {
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 80%;
    height: 1px;
    background-color: var(--gold-clr);
}

.matcher>div:nth-child(2) {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 25px 25px;
    width: 25px;
    height: 25px;
    border: 1px solid var(--black-pri-clr);
    z-index: -10;
    transition: var(--all-basic-transition);
    
}

.matcher>div:nth-child(2) div {
    position: absolute;
    border-radius: 15px 15px;
    top: 4px;
    left: 4px;
    width: 15px;
    height: 15px;
    background-color: var(--gold-clr);
}

.music-sect>a {
    display: inline-block;
    width: 100%;
    margin-bottom: .3rem;
    border: 1px solid var(--black-pri-clr);
    transition: var(--all-basic-transition);
}


.music-sect>a img {
    width: 100%;
    object-fit: cover;
    z-index: 10;
}

.music-sect h1 {
    display: inline;
    background-color: var(--grey-clr);
    color: var(--black-pri-clr);
    font-weight: 100;
}

.music-sect p {
    margin: .4rem 0;
    font-weight: 100;
    font-size: var(--small-font-size);
}

.music-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    gap: .6rem;
}

#artist-select, #year-select  {
    text-align: center;
    border: none;
    outline-style: none;
    color: var(--brw-clr);
    background-color: var(--black-pri-clr);
    font-weight: var(--bold-font-weight);
    cursor: pointer;
}

#artist-select option, #year-select option {
    font-weight: var(--medium-font-weight);
}

#instagram-label {
    cursor: pointer;
}


#music-line     {
    width: 1px;
    background-color: var(--grey-clr);
    z-index: -1000;
}


.year {
    display: inline-block;
    position: absolute;
    background-color: var(--grey-clr);
    color: var(--black-pri-clr);
    padding: .2rem .5rem;
    font-size: var(--medium-font-size);
    top: 0;
}

.year-l {
    left: 119%;
}

.year-r {
    left: -30%;
}

.move-button {
    position: absolute;
    font-size: 2rem;
    background-color: grey;
    color: white;
    top: 50%;
}

/* HOVER EFFECT  */

.music-sect>a:hover{
    border: 1px solid var(--gold-clr);
}

.music-sect>a:hover ~ .matcher>div:nth-child(2) {
    border: 1px solid var(--gold-clr);
}


@media (max-width: 1100px) {
    .sections {
        width: 95vw;
    }

    .info-box-2 {
        display: none;
    }
}