body {
	background-color: #000000;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	color: #000000;
}

.container {
    max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	background-color: #000000;
	box-shadow: 0px 0px 20px #FFFFFF;
    align-content: center;
}

h1 {
	font-size: 72px;
	font-weight: bold;
	color: #FFFFFF;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

h2 {
	font-size: 36px;
	font-weight: bold;
	color: #FFFFFF;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

nav {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav li {
	display: inline-block;
	margin-right: 20px;
}

nav a {
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all 0.2s ease-in-out;
    padding: 16px
}

nav a:hover {
	background-color: #FFFFFF;
	color: #000000;
}


ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	margin-bottom: 10px;
}

section {
	background-color: #000000;
    padding: 60px
}

.main {
    position: relative;
    height: auto;
  }
  
  .main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 1px;
    border: 2px solid #000000;
  }
  
  .main-grid-item {
    position: relative;
    overflow: hidden;
  }
  
  .main-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    
  }
  
  .main-text h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(65, 53, 53, 0.5);
    -webkit-text-stroke: 2px #ffffff;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-style: oblique;
  }

.feature {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.feature-image {
	flex: 1;
	margin-right: 40px;
    margin-left: 20px;
}

.feature-image img {
	width: 100%;
}

.feature-text {
	flex: 1;
}

.feature-text h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
}

.feature-text p {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #FFFFFF;
}

video {
	width: 100%;
    max-width: 800px;
}

.button-container {
	display: flex;
	justify-content: center;
}

.button {
	display: inline-block;
	padding: 20px 40px;
	background-color: #FFFFFF;
	color: #000000;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.2s ease-in-out;
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.button:hover {
	background-color: #cfcece;
	color: #000000;
}

footer {
	margin-top: 60px;
	text-align: center;
	color: #ffffff;
    background-color: #000000;
	font-size: 12px;
}
