body {
    height: 300vh;
}

#logo h1 {
    font-size: 146px;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 200px;
    position: relative;
    display: inline-block;
    width: 100%;
}

#bg {
    position: fixed;
    inset: 0;
    background-image: url("/public/images/background2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: -1;
}

#content {
    width: 90%;
    max-width: 1100px;
    margin: 0px auto;
    height: 100%;
    background-color: #eeeeee;
    box-shadow: -1px 14px 55px 21px rgba(0, 0, 0, 0.84);
    padding: 20px;
    box-sizing: border-box;
}

#content h3 {
    margin: 0;
    font-family: 'impact', Arial, sans-serif;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-image: url('/public/images/rough_metal_texture.jpg');
    background-size: 40%;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    filter: drop-shadow(6px 4px 10px rgba(0, 0, 0, 0.4));
}

#content .image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

#content .image-list img {
    max-width: 100%;
    width: 400px;
    max-height: 67px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    #logo h1 {
        font-size: 11vw;
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    #content h3 {
        font-size: 8vw;
    }
}

@media (max-width: 480px) {
    #logo h1 {
        font-size: 10vw;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    #content {
        width: 95%;
        padding: 15px;
    }

    #content h3 {
        font-size: 32px;
    }

    #content .image-list {
        flex-direction: column;
        align-items: center;
    }

    #content .image-list img {
        width: 100%;
        height: auto;
    }
}