.header-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: right; /* Center items horizontally */
}

.header-container img {
    margin-right: 20px; /* Adjust spacing as needed */
    margin-top: 10px;
}

.header-container h1 {
    color: aliceblue;
    margin-right: 10px;
}
.video-container {
    margin-top: 20px; /* Adjust the space between the headers and the video */
    display: flex;
    justify-content: center; /* Horizontally center the video */
}

.header2-container  {
    margin-top: 20px;
    justify-content: center;
    text-align: center;
}
.header2-container h1 {
    color: aliceblue;

}

.header3-container  {
    margin-top: 30px;
    justify-content: center;
    text-align: center;
}
.header3-container h1 {
    color: aliceblue;
    font-size: 1em;

}
body
{
    margin: 20px;
    background: rgb(222,212,138);
    background: linear-gradient(90deg, rgba(222,212,138,1) 0%, rgba(204,146,8,1) 48%, rgba(110,83,1,1) 100%);
}
video {
    width: 100%; /* Full width */
    max-width: 1280px; /* Maximum width of 1280 pixels */
}

.img-responsive {
    max-width: 80%; /* Keeps image small on larger screens */
    height: auto;
}

/* Mobile view */
@media (max-width: 768px) { /* Adjust max-width as needed */
    .img-responsive {
        max-width: 100%; /* Expands the image on mobile screens */
        height: auto;
    }
}

a {
    color: #034d8f !important;;
}

