body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.video-container {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
}

video {
    width: 100%;
    height: 100%;
    -o-object-fit:90% ;
    object-fit: 90%;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(231,191,191);
    text-align: center;
    z-index: 1500;
}

h1 {
    font-size: 3.5rem;
}

p {
    font-.email-buttonize: 1.5rem;
}
.email-button {
    position: absolute;
    left: 0;
    bottom: 20px;
    background-color: pink;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 400px;
}

.image-frame {
    width: 150px;
    height: 120px;
    background-color: black;
    border: 10px solid black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame img {
    width: 100%;
    height: 100%;
}