* {
	box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
	font-family: 'Space Mono', monospace;
	text-transform:uppercase;
}

a:link {
  color: #FFF;
  text-decoration: underline;  
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}


.wrapper {
    position: fixed;
    bottom: 0;
    background: rgba(217, 42, 52, 1);
    color: #f1f1f1;
    width: 100%;
    padding: 5px;    
}

.content {
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    padding: 0 15px;
    font-family: 'Space Mono';
}

.order {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-evenly;
}

h1 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 20px;
    text-align: center;
}

.content p {
    margin: 5px 0 5px 0;
    font-size: 20px;
    text-align: center;    
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 767px) {
    .fullscreen-bg {
        background: url('../images/767.jpg') center center / cover no-repeat;
    }

    .fullscreen-bg__video {
        display: none;
    }
}