body, html{
    margin:0;
    padding:0;
}

html { 
    background: #000 url(../images/background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: avenir;
    height:100%;
}

.container {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;;
}

.container > div {
    width: 100%;
}

.container .logos {
    display: flex;
    justify-content: center;
    flex-direction: row;
    max-height: 100px;
    margin-top: 30px;
}

.container .logos img {
    max-height: 100px;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.container .logos > div {
    margin: 0 1em;
}


.container .logos > div:nth-child(2) {
    width: 2px;
}



.container .text {
    text-transform:uppercase;
    letter-spacing: 0.5em;
    font-size: 4em;
    font-weight: bold;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    margin: 1em 0;
}

.container .text > div {
    margin: 0.5em 0;
    display: inline-block;
}

.container .text .blue {
    color: #00F5F5;
}

.container .video {
    display: flex;
    justify-content: center;
}

.container .video iframe {
    width: 1024px;
    height: 576px;
}

.container .cars {
    display: flex;
    justify-content: center;
}

.container .cars img {
    max-width: 90%;
    max-height: 200px;
    padding: 1em;
}

@font-face {
    font-family: avenir;
    src: url(../fonts/Avenir-Black.ttf);
}

@media (max-width: 1300px) {
    .container .video iframe {
        width: 640px;
        height: 360px;
    }
}

@media (max-width: 600px) {
    
    .container .logos {
        max-height: 70px;
    }

    .container .text {
        font-size: 2.5em;
    }
    
    .container .logos img {
        max-height: 70px;
    }

    .container .video iframe {
        width: 384px;
        height: 216px;
    }
}
  