﻿#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

h1, h2 {
    color: white;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 3rem; 
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: normal;
}

.overlay {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (max-width: 750px) {
    #background-video {
        display: none;
    }

    body {
        margin: 0;
        background: url('/images/under-construction.jpg') no-repeat center center;
        background-size: cover;
        height: 100vh;
    }
}
