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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.overlay-image {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .overlay-image {
        max-width: 400px;
    }
}

.overlay-image video {
    width: 100%;
    height: 450px!important;
    object-fit: cover;
    display: block;
}

.overlay-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px!important;
    object-fit: cover;
}
@media (min-width: 769px) {
    .overlay-image video {
        height: 100%;
    }

    .overlay-image img {
        height: 100%;
    }
}

.gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, #f5f5f5 100%);
    pointer-events: none;
    z-index: 2;
}

h1 {
    position: fixed;
    top: 10px;
    left: 2%;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

h1 img {
    height: 40px;
    width: auto;
}

@media (min-width: 769px) {
    h1 {
        left: calc(50% - 200px + 10px);
        transform: none;
    }
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.gallery img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: block;
}


@media (max-width: 768px) {
    .gallery img {
        max-width: 100%;
    }
    
    body {
        padding: 0;
    }
}