body {
    .winkcontent {
        width: 100%;
        text-align: center;
        border: none;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        padding: 0;
        background-color: #F8F9FA;
        padding: 10px 5px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 300px;
        position: relative;
        p {
            font-size: 0.8em;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }
        p.noPreview {
            position: absolute;
            top: 5px;
            right: 5px;
            margin: 0;
            font-size: 0.5em;
            font-weight: normal;
        }
        img {
            position: absolute;
            object-fit: contain;
            width: 90%;
            height: 90%;
            opacity: 0.05;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
    }
}