.main {
    width: 45%;
    height: 45%;
}

.container {
    height: calc(100% - 2em);
    width: calc(100% - 2em);
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding: 1em;
}

.container>.side1 {
    width: 30%;
    height: 100%;
    position: relative;
}

.side1>.wrap {
    height: 100%;
    overflow: auto;
    background-image: url(../img/bg/sw.jpg);
    margin-left: -1em;
    margin-top: -1em;
    padding: 1em;
    scrollbar-width: none;
}

.container>.side1::after {
    content: '';
    height: calc(100% + 2em);
    width: 1px;
    background: white;
    position: absolute;
    top: -1em;
    right: 0;
}

.thumb {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;

}

.thumb img {
    height: 85px;
    display: block;
    filter: saturate(0);
    border: 1px solid rgb(154, 154, 154);
}

.thumb img:hover {
    filter: saturate(1);
}

.container>.side2 {
    width: 70%;
    height: 100%;
}

.viewer {
    background-image: url(../img/bg/fa.jpg);
    background-size: cover;
    width: calc(100% + 3em);
    height: calc(100% + 2em);
    margin-left: -2em;
    margin-top: -1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer>.inside {
    position: relative;
}

.inside img {
    height: 400px;
    border-width: 7px;
    border-style: solid;
    border-image: url("../img/b.png") 7 fill round;
    /* padding: 10px; */
    background: black;
}

.inside>.info {
    padding: 10px;
    /* width: 200px; */
    position: absolute;
    bottom: 1em;
    left: -3em;
    background: black;
    border: 1px solid gray;
}

.info p {
    margin: 0;
    font-size: .75em;
}

.info p span {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.info p a {
    color: white;
    text-decoration: none;
}

.info p a:hover {
    color: rgb(199, 67, 67);
}

.faveartists {
    width: 100%;
    height: calc(40% - 5em);
    border: 1px solid white;
    margin-top: 5em;
}


@media screen and (max-height: 1100px) and (max-width: 1920px) {

    .main {
        height: 50%;
    }

    .inside img {
        height: 350px;
    }

}