html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,1) 69%, rgba(255,179,0,1) 91%, rgba(255,0,0,1) 100%);
}

.car{
    z-index: 1;
    text-align: center;
    padding-top: 20%;
}

h1{
    font-size: 62px;
    font-family: "Bebas Neue", sans-serif;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    padding: 20px;
}

p{
    font-size: 72px;
    font-family: "Bebas Neue", sans-serif;
    background: rgba(0, 0, 0, 0.5);
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh; /* 100vh * (16/9) */
    height: 100vh;
    transform: translate(-50%, -50%);
}

.video-foreground iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
