*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", sans-serif;
    background: #000;
}

html {
    height: 100%;
}

body {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/*#6D5D50  light brown*/
/*#212020 dark */
/*#9C8F7F very light brown */
/*#524C46 dark brown*/
.content {
    position: relative;
    z-index: 2;
    width: 100%;
    border: 15px solid #FFFFFF;
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFF;
    border-radius: 5px;
}

.logo {
    height: 300px;
    margin-bottom: 20px;
    display: block;
}

.about-text {
    font-size: 24px;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.nav-links a {
    color: #C61618;
    width: 100%;
    padding: 20px;
    border: 5px solid #C61618;
    border-radius: 5px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: all 300ms ease;
    margin-bottom: 10px;
    cursor: pointer;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    flex-wrap: wrap;
}

.social-links a {
    margin: 0 5px 10px;
}

.social-links a:hover {
    opacity: 0.75;
}

.social-links a img {
    height: 60px;
    width: 60px;
}
