.filmImg img {
    width: 450px;
    height: 450px;
    position: fixed;
    top: 190px;
    left: 0;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.film:hover img {
    opacity: 1;
}

.wrapper:not(:hover) .filmList:first-of-type .film:first-of-type img {
    opacity: 1;
}

.film:hover .year::after, .wrapper:not(:hover) .filmList:first-of-type  .film:first-of-type .year::after {
    content: '•';
    vertical-align: middle;
    margin-left: 20px;
    position: relative;
    font-size: 27px;
    line-height: 80%;
}

.wrapper {
    margin-left: 470px;
}

#filmografie svg {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 20px;
    stroke-width: 1.7px;
}

.film {
    display: flex;
    border-top: solid 3px var(--black);
    padding: 7px 4px;
}

.film:last-child {
    border-bottom: solid 3px var(--black);
}

.film a:visited {
    color: var(--yellowDark);
}


@media only screen and (max-width: 1280px) {
    .filmImg img {
        width: 300px;
        height: 300px;
    }

    .wrapper {
        margin-left: 320px;
    }
}


@media only screen and (max-width: 1050px) {
    .filmImg img {
        display: none;
    }

    .wrapper {
        margin-left: initial;
    }
}


@media only screen and (max-width: 900px) {
    .wrapper:not(:hover) .filmList:first-of-type  .film:first-of-type .year::after {
        content: '';

    }
}