#headerVid video
{
    object-fit: cover;
    max-width: 100%;
    z-index: -1;
}

#headerVid .container
{
    width: 100%;
    position: relative;
    top: 40%;
    text-align: center;
}

#mainContent
{
    width: 100vw;
    height: auto;
    color: black;
    
    padding:0;
}

#od1Logo
{
    margin: 15px;
}

#od1Logo img
{
    width: 100%;
}

h
{
    font-size: 18px;
    display: none;
    color: white;
}

.button .btn
{
    padding: 35px;
}

#mainContent h1
{
    margin: 15px;
    font-size: 20px;
    color: white;
}

#booking .btn a
{
    color: white;
    text-decoration: none;
}

#booking .btn 
{
    background-color: #3c667a;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0.8;
}

#booking .btn:hover
{
    box-shadow: 0;
    background-color: red;
}


#mainContent #gallery, #mainContent #booking
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap:10px;
    margin:15px;
}

#mainContent #booking
{
    grid-template-columns: repeat(1,1fr);
}

#mainContent #gallery
{
    margin-bottom: 100px;
}

.galleryItem, .bookingItems
{
    width: 100%;
    height: 100%;
    position: relative;
}

.galleryItem .image, .bookingItems .button
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.galleryItem .image img, .bookingItems .button .btn
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*Centers the image instead of position top-left*/
    object-position: 50% 50%;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.galleryItem:hover .image img
{
    transform: scale(1.5);
}

.galleryItem .text
{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    /*makes the text centered*/
    transform: translate(-50%,-50%);
    color:#fff;
    font-size: 25px;
    pointer-events: none;
    z-index: 4;
    transition: .3s ease-in-out;
    -webkit-backdrop-filter: blur(5px) saturate(1.8);
    backdrop-filter: blur(5px) saturate(1.8);
    text-align: center;
}

.galleryItem:hover .text
{
    opacity: 1;
    animation: move-down .3s linear;
    padding: 1em;
    width: 100%;
}

@media screen and (max-width: 400px)
{
    #mainContent #booking
    {
        grid-template-columns: repeat(1,1fr);
    }
}
@media screen and (max-width: 570px)
{
    h
    {
        display: block;
    }
}

@media  screen and (min-width: 574px)
{
    #mainContent #gallery, #mainContent #booking
    {
        grid-template-columns: repeat(3,1fr);
    }   
}
/*Adding animation to text*/
@keyframes move-down
{
    0%
    {
        top:10%;
    }
    50%
    {
        top:25%;
    }
    100%
    {
        top:50%;
    }
}
/* 
    My Color Pallet

    Royal Lush: #3c66a7
    Warm Skyline: #a5c7e0
    Cloudy Grey: #e5e5e5
    Electric Lemon: #ebe82b
*/