 body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
}

h1 {
    color: #f5f5f5;
    margin-bottom: -30px;
}

h2 {
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: inline;
    margin-right: 15px;
}

a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

li img {
    width: 500px;
    height: 280px;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: transform 0.2s;
}
li a:hover img {
    transform: scale(1.02);
    border-color: #777;
}

.popup {
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #333;
    border-radius: 8px;
}

a:hover .popup {
    opacity: 1;
    padding: 10px;
}

.logo_wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    overflow: hidden;
}
.logo_overlay {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.6), transparent);
    animation: shimmer 2s infinite;
}

.logo {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.copy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #171717;
    margin: 0;
    padding: 7px;
    font-size: 0.9em;
    color: #777;
}

@media screen and (max-width: 768px) {
    h1 {
    font-size: 1.8em;
    margin-bottom: -20px;
    }

    .logo {
    width: 100%;
    max-width: 350px;
    }

    li {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
    }

    li img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    }

    body {
    padding: 10px;
    }
}