* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
    margin: 0;
    padding: 0;
    background: #034d7c;
    color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
	font-style: normal;
    text-align: center;
    background-attachment: fixed;
}
.fullscreen-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -100;
	left: 0;
	top: 0;
	overflow: hidden;
	background: #ffffff;
}
.fullscreen-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-aspect-ratio: 16/9) {
.fullscreen-bg-video {
    height: 100%;
}
}

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