*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.hero{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(12,3,51,0,3), rgba(12,3,51,0.3));
	position: relative;
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}
nav{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav .logo{
	width: 130px;
}
nav ul li{
               List-style: none;
               display: inline-block;
               magin-left: 40px;
               word-spacing: 10px;
}
nav ul li a{
	text-decoration: none;
	color: #fff;
                font-size: 20px;
                margin-right: 10px;
}

.content{
	text-align: center;
}
.content h1{
	font-size: 100px;
	color: #fff;
	font-weight: 600;
	transition: 0.5s;
}
.content h1:hover{
    -webkit-text-stroke: 2px #fff;
	color: transparent;
}
.content a{
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	color: #fff;
	font-size: 24px;
	border: 2px solid #fff;
	padding: 14px 70px;
	border-radius: 50px;
	margin-top: 50px;
}

.back-video{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

@media (min-aspect-ratio: 16/9){
	.back-video{
		width: 100%;
		height: auto;
}

/* Add some basic styling to the facilities section */
        #facilities {
            text-align: center;
            padding: 20px;
        }

        /* Style for the facility cards */
        .facility-card {
            display: inline-block;
            margin: 10px;
            text-align: left;
            max-width: 300px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        /* Style for facility images */
        .facility-img {
            max-width: 100%;
            height: auto;
            border-bottom: 1px solid #ddd;
        }

        /* Style for facility description */
        .facility-description {
            padding: 15px;
        }
 
 /* Media queries for responsiveness */
        @media screen and (max-width: 767px) {
            hero,facility-img {
             font-size: 16px;
            }
        }