@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100vh;
	overflow: hidden;
}

body {
	height: 100%;
	font-family: 'Dosis', Arial, sans-serif;
	background-color: #8166b6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	width: 100%;
}

/* Header Styles */
header {
	height: 90px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	margin: 0 auto;
}

.logo img {
	height: 50px;
	width: auto;
}

/* Main Content Styles */
main {
	padding: 40px 0;
	height: calc(100vh - 90px);
	display: flex;
}

.info-box {
	width: 50%;
	background: rgba(255, 255, 255, 0.9);
	padding: 30px 60px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}

.info-box h2 {
	margin-bottom: 20px;
	color: #333;
}

.info-box p {
	margin-bottom: 20px;
	line-height: 1.6;
	color: #666;
}

.info-box a {
	color: #333;
	text-decoration: none;
}

.info-box a:hover {
	color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
	.logo img {
		height: 40px;
	}
	main {
		padding: 0;
		align-items: center;
	}
	.info-box {
		width: 100%;
		padding: 20px 30px;
	}
}