body{ 
    background-color: #000; 
    height: 100vh;
}

body, html{ margin: 0; }

a{
    color: #fff;
    font-size: 16px;

    cursor: pointer;
    text-decoration-line: underline;
}

a:hover{
    color:#ffd4b7;
    font-weight: bold;
}

s{
    user-select: none;
    color:#a2a2a2;
}

li{ margin-left: -3px; }

ul{ 
    margin: 0; 
    margin-left: -3px;
}

.container{
    display: flex;
    color: #fff;

    justify-content: center;
    align-items: center;

    margin: 0 auto;
    margin-top: -100px;
    
    width: 65%;
    max-width: 1080px;
    height: 100%;
}

.links{ 
    width: 50%; 
    max-width: 350px;
}

.links:hover .preview{ opacity: 1; }

.preview{ 
    opacity: 0;

    width: 50%;
    max-width: 267px;

    text-align: center;
    
    margin: auto 0;
    margin-left: 20px; 
}

.preview img{
    width: 100%;
    max-height: 200px;

    aspect-ratio: 4/3;
}

.preview span{
    display: block;

    width: 100%;
    max-width: 267px;
    aspect-ratio: 4/3;

    border: 3px solid #fff;
    user-select: none;

    line-height: 146.25px;
}

#previewDesc{ height: 54px; }
#previewImg{ color: #ccc}

/* for smaller screens */
@media only screen and (max-width:790px){
    .container{ 
        width: 45%;
        margin: 0 auto;
        flex-direction: column
    }

    .links, .preview{ width: 100%; }

    .preview{ 
        margin: 0; 
        margin-top: 50px;
    }
}