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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: purple;
    color: white;
    overflow-x: hidden;
    overflow-y: auto;
}

.media-collage {
    position: relative;
    width: 100%;
    height: calc(100vh - 2rem);
    overflow: auto;
    padding: 20px;
    mix-blend-mode: lighten;
}

.media-collage img,
.media-collage video {
    position: absolute;
    width: 300px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5px, 5px) rotate(5deg);
    }

    50% {
        transform: translate(-5px, 5px) rotate(-5deg);
    }

    75% {
        transform: translate(5px, -5px) rotate(3deg);
    }
}

.media-collage img.highlight,
.media-collage video.highlight {
    transform: scale(1.5) rotate(3deg);
    z-index: 999;
}

.link-list {
    position: fixed;
    padding: 1rem;
    top: 1rem;
}

.link-list a {
    color: yellow;
    mix-blend-mode: difference;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    z-index: -9999;
}

.description {
    color: blueviolet;
    mix-blend-mode: multiply;
}

.highlight {
    color: red;
    border: 2px solid #f00;
}

.media-item {
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

img {
    max-width: 100px;
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    text-wrap: balance;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-3px);
    }
}

img:hover {
    animation: bounce 0.5s ease-in-out;
}

h1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    font-size: 1.5rem;
    text-shadow: 0 0 10rem white;
    background-color: white;
    border: 1px solid red;
    color: purple;
    mix-blend-mode: hard-light;
    padding: 1rem;
    z-index: 999999999;
}

.headline {
    color: yellow;
    font-size: 1rem;
    max-width: 100px;
    max-height: 100px;
    transition: transform 0.3s, opacity 0.3s;
    position: absolute;
    cursor: pointer;
    text-wrap: balance;
    overflow: hidden;
    line-height: 1.2;
    word-break: break-word;
    padding: 4px;
    animation: float 6s ease-in-out infinite;
}

.headline.highlight {
    transform: scale(1.15);
    z-index: 999;
    color: red;
}

.marquee {
    font-size: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: white;
    color: blue;
    mix-blend-mode: lighten;
    z-index: 9999;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee span {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 120s linear infinite;
    padding-left: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee a:hover {
    text-transform: uppercase;
}

.archive {
    position: fixed;
    right: 1rem;
    top: 1rem;
    color: red;
}