.content{
    display: flex;
    flex-direction: row;
    gap: 100px;
    width: 80%;
    margin-left: 10%;
    margin-top: 100px;
}

.content .left{
    flex: 3;
}

.content .left .btns{
    display: flex;
    gap: 20px;
}

.content .left .btns > *{
    display: flex;
    align-items: center;
    gap: 10px;
}

.content .left .btns img{
    height: 30px;
}

.content .left .btns img:hover{
    cursor: pointer;
}

.content .left .btns a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    gap: 10px;
}

.content .left .btns .preview a{
    font-size: 15px;
}

.content .right{
    flex: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.content .left .artwork-title{
    font-size: 35px;
}

.content .specs h2{
    font-size: 22px;
    margin: 12px 0;
}

.content .text{
    font-weight: 500;
}

.content .desc .text{
    font-size: 18px;
    margin-top: 10px;
}

.content .left .note{
    font-size: 16px;
    font-weight: 600;
    width: 120%;
}
.content .left .note p{
    width: 100%;
}
.content .left .note a{
    text-decoration: none;
    font-weight: 700;
    color: black;
}

.content .left .note a:hover{
    color: #8A5B1B;
}

.content .right .more-imgs{
    width: 100%;
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.content .right .more-imgs .img-container{
    all: unset;
    background: #000;
    height: 70px;
    width: 50px;
    overflow: hidden;
}

.content .right .more-imgs .img-container img{
    all: unset;
    height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.content .right .more-imgs .img-container:hover{
    cursor: pointer;
}

.main-preview-container{
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: 0.3s ease;
}

.main-preview-container img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px #0004);
}

@media(max-width: 820px){
    html, body{
        overflow-x: hidden;
    }
    .content{
        flex-direction: column-reverse;
    }
}