#video-fond {
	 overflow: hidden;
	 position: fixed;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
}

#video-fond > video {
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 left: 0;
}

button {
	 width: 100%;
	 font-size: 16px;
}

@media (min-aspect-ratio: 16/9) {
	 #video-fond > video {
		  height: 300%;
		  top: -100%;
	 }
}

@media (max-aspect-ratio: 16/9) {
	 #video-fond > video {
		  width: 300%;
		  left: -100%;
	 }
}

@supports (object-fit: cover) {
	 #video-fond > video {
		  width: 100%;
		  height: 100%;
		  top: 0;
		  left: 0;
		  object-fit: cover;
	 }
}

* {
	 box-sizing: border-box;
}

body {
	 margin: 0;
	 font-family: Arial;
	 font-size: 17px;
}

.content {
	 position: fixed;
	 right: 10px;
	 top: 10px;
	 background: rgba(0, 0, 0, 0.5);

	 color: #f1f1f1;
	 /*width: 30%;

	  */
	 padding: 20px;
	 max-width: 530px;
}

.content .tagline {
	 display: block;
	 text-align: right;
	 margin-top: -20px;
	 color: aqua;
	 font-size: 22px;
	 letter-spacing: 5px
}

#myBtn {
	 width: 100%;
	 font-size: 18px;
	 padding: 10px;
	 border: none;
	 background: #000;
	 color: #fff;
	 cursor: pointer;
	 background-color: #3d60a3;
	 color: #ffffff;
	 text-decoration: none;
	 display: inline-block;
	 text-align: center;
	 margin-top: 25px;
}

.google-btn {
	 width: 100%;
	 font-size: 18px;
	 padding: 10px;
	 border: none;
	 background: #FFF;
	 color: #000;
	 cursor: pointer;
	 text-decoration: none;
	 display: inline-block;
	 text-align: center;
	 margin-top: 25px;
}

