* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

ul {
	list-style: none;
}

section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 110px 100px;
}

@media (max-width: 1000px) {
	section {
		padding: 100px 50px;
	}
}

@media (max-width: 600px) {
	section {
		padding: 125px 30px;
	}
}



.box {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12.3.51,0,3),rgba(12.3.51,0,3));
	position: relative;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.box video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
    opacity: 0.3;
}

.box h1 {
	margin-bottom: 15px;
	font-size: 65px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    z-index: 10;
}
.box p {
	margin-bottom: 40px;
	font-size: 25px;
    z-index: 10;
}

.box button {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    background-color: #fff;
    color: black;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 60px;
    transition-duration: 0.4s;
    z-index: 10;
}

.box button:hover {
    background-color: #555;
}

@media (max-width: 800px) {
	.box {
		min-height: 600px;
	}
	.box h1 {
		font-size: 32px;
	}
	.box p {
		font-size: 20px;
	}
	.box button {
		padding: 15px 40px;
	}
}
