body {
    background-color: #303030;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

*{
    color: white;
}

#header-title {
    display: inline;
}

header {
    background-color: #404040;
}

header > * {
    margin: 5px;
    padding: 10px;
}

footer{
    text-align: center;
}

nav > a {
    background-color: #404040;
    border: 2px solid #606060;
    padding: 10px;
    text-decoration: none;
}

nav > a:hover {
    background-color: #505050;
    border: 2px solid #606060;
    padding: 10px;
    text-decoration: none;
}

div#intro-div{
    display: flex;
    flex-direction: row;
    height: 500px;
    text-align: center;
    vertical-align: 50%;
}

#intro-video {
    flex: 2;
}

.video-container {
    position: relative;
    text-align: left;
}

.video-container video{
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    position: absolute;
    filter: brightness(30%);
}

.video-container .video-caption {
    z-index: 1;
    position: relative;
    text-align: center;
    line-height: 350px;
    font-size: 300%;
}

div#thisis {
    flex: 1;
    font-size: 200%;
    padding-top: 100px;
    background-color: rgb(104, 153, 31);
}

div#gallery{
    display: flex;
}

.gallery-entry {
    text-align: center; 
    flex: 1;
}

.gallery-entry > img 
{
    max-width: 80%;
    max-height: 70%;
}