*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--primary-color: #1e2a47;
	--secondary-color: #4b5d74;
	--text-color: #f1f1f1da;
	--bg-color: #313741;
	--highlight-color: #ff6f61;
	--font-family: sans-serif;
}

body {
	background: rgb(2, 0, 36);
	background: linear-gradient(45deg, rgb(22, 21, 40) 0%, rgba(13, 13, 41, 1) 92%);
	font-family: var(--font-family);
	color: var(--text-color);
	margin: 0;
	padding: 0;
}

header,
footer {
	text-align: center;
	padding: 2.5rem;
	font-size: 1.25rem;
	font-weight: bold;
}

footer {
	margin-top: auto;
}

header {
	display: flex;
	justify-content: space-between;
}

.banner {
	width: 100%;
	max-height: 800px;
	object-fit: cover;
}

main {
	max-width: 1000px;
	margin: 20px auto;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

section {
	margin-top: 40px;
	text-align: center;
}

a {
	color: rgb(161, 179, 196);
}

h1,
h2 {
	text-align: center;
}

.grid-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.grid-item {
	background-color: #2e3b595a;
	color: var(--text-color);
	padding: 15px;
	border-radius: 8px;
	flex: 1;
	text-align: center;
}

.contact-form {
	background-color: #2e3b595a;
	padding: 20px;
	border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid rgba(255, 255, 255, 0.249);
	border-radius: 5px;
	background-color: transparent;
	color: var(--text-color);
	margin-top: 15px;
	font-family: inherit;
}

::placeholder {
	color: rgba(255, 255, 255, 0.728);
}

.button {
	background-color: var(--primary-color);
	color: var(--text-color);
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.button:hover {
	background-color: var(--secondary-color);
}