* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    background: beige;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative
}

.content {
    position: absolute;
    display: inline-block;
    background: white;
    border: 1px solid black;
    padding: .5rem;
    max-width: 300px;
    cursor: grab;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    transition: transform .2s ease, top .2s ease, left .2s ease
}

a {
    text-decoration: none;
    display: block;
    word-wrap: break-word;
    color: black
}

img.content-preview {
    display: block;
    width: 100%;
    max-height: 200px;
    border-radius: 4px;
    object-fit: contain;
    margin-bottom: .5rem
}

.title {
    z-index: 1;
    text-transform: uppercase
}