body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background: url('https://cdn.mos.cms.futurecdn.net/XfREyDUvNNapfMnMPV4QMk.jpg') center/cover;
	color: #ddd;
	overflow-x: hidden;
}

header {
	background-color: #000;
	padding: 10px;
	text-align: center;
}

nav {
	background-color: #1a1a1a;
	padding: 10px;
	text-align: center;
}

nav a {
	color: #ecf0f1;
	text-decoration: none;
	margin: 0 15px;
	padding: 8px 15px;
	border-radius: 10px;
	transition: background-color 0.3s;
}

nav a:hover {
	background-color: #011f4f;
}

.content {
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}

section {
	margin: 20px;
	padding: 20px;
	border-radius: 15px;
	background-color: #1a1a1a;
	transition: transform 0.3s;
}

section:hover {
	transform: scale(1.01);
}

.button-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}

button {
	padding: 15px 20px;
	margin: 10px;
	background-color: #2C3E50;
	color: #ecf0f1;
	text-decoration: none;
	border-radius: 10px;
	transition: background-color 0.3s;
	cursor: pointer;
}

button:hover {
	background-color: #011f4f;
}

.popup {
	display: none;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8); /* Dark grey background */
    padding: 60px; /* Increased padding for a bigger popup */
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Contrast border */
    z-index: 9999;
    max-width: 600px; /* Adjust the maximum width of the popup */
    text-align: center; /* Center align the text */
    color: white; /* White text color */
    font-size: 24px; /* Larger font size */
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: white; /* White color for the close button */
    font-size: 30px; /* Increase font size for the X button */
}

.popup-title {
    font-size: 30px; /* Larger font size for the title */
    margin-bottom: 30px; /* Add some space below the title */
}

.popup-description {
    font-size: 20px; /* Larger font size for the description */
    line-height: 1.5; /* Increased line height for better readability */
    margin-bottom: 30px; /* Add some space below the description */
}