* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0px 0px 0px;
}

.logo {
  max-width: 240px;
  width: 40vw;
  height: auto;
  margin-top:0px;
}

.video-container {
  margin-top: 30px;
  width: 100%;
  max-width: 640px;
  position: relative;
  aspect-ratio: 16 / 8.8;
}

.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
}

.text {
  margin-top:40px;
  font-size: 1.6rem;
  font-weight:500;
  color: #333;
}
.text2 {
  margin-top:20px;
  margin-bottom:5px;
  font-size: 1.6rem;
  font-weight:500;
  color: #333;
}

.email {
  margin-top:30px;
  font-size: 1.3rem;
  color: #555;
}
.footer {
	display:flex;
	width:100%;
	padding:10px;
	box-sizing:border-box;
	background-color:#f2f2f2;
	margin-top:100px;
	text-align:right;
	vertical-align:middle;
	justify-content:end;
	align-items: center;
	color:#c0c0c0;
	font-size:14px;
	padding-right:20px;
}
.footer .wemaginesoft_ci {
	height:30px;
	vertical-align:bottom;
	margin-left:10px;
	cursor:pointer;
}

@media (max-width: 600px) {
	body {
		height:100%;
	}
	.text {
		font-size: 1rem;
	}
	.text2 {
		font-size: 1rem;
	}

	.email {
		font-size: 0.9rem;
	}
	.footer {
		position:absolute;
		bottom:0px;
		left:0px;
		font-size:12px;
	}
	.footer .wemaginesoft_ci {
		height:25px;
	}
}