@font-face {
    font-family: 'Stengazeta';
    src: url('../fonts/Stengazeta-Regular_5.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

p {
    margin: 0;
}

th {
    font-weight: 400;
}

th, td {
    width: 25%;
}

body {
    font-family: "Stengazeta", serif;
    font-size: 18px;
}
header {
    font-size: 28px;
}

.video-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper .video-fade {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.video-wrapper video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%;
    min-height: 100%;

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video-text {
    top: 40%;
    left: 15%;
    transform: translateY(-50%);
}

.about {
    font-size: 21px;
    line-height: 1.6;
}