* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: arial, sans-serif;
	line-height: 1.6;
	color: white;
	background: #0b0900;
}

header {
	height: 100vh;
	background: linear-gradient(217deg, #d4af3700, #000000ff 70.71%),
	linear-gradient(127deg, #ffd700ff, #00000000 70.71%),
	linear-gradient(336deg, #b8860bff, #000000ff 70.71%);
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}

header .logo-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

header .logo-container img {
	width: auto;
	max-width: 100%;
	margin: 10px;
}

header h1 {
	font-size: 3rem;
	margin-bottom: 10px;
}

@media (max-width: 400px) {
	body {
		line-height: normal;
	}
	
	header h1 {
		font-size: 2rem;
	}
}

header p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.2rem;
	max-width: 800px;			  
	margin-bottom: 20px;
}

.button {
	display: inline-block;
	padding: 10px 20px;
	color: #0b0900;
	background: goldenrod;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
}

.button:hover {
	background: lightgoldenrodyellow;
}

section {
	padding: 50px 20px;
	text-align: left;
}

section h2 {
	font-size: 2rem;
	max-width: 800px;
	margin-bottom: 20px;
	margin: 0 auto;
}

section p {
	font-size: 1rem;
	max-width: 800px;
	margin: 0 auto;
}

section a {
	color: goldenrod;
}

footer {
	background: black;
	color: white;
	padding: 20px;
	text-align: center;
}

footer p {
	font-size: 0.9rem;
}

footer a {
	color: goldenrod;
	font-size: 0.9rem;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

.social-icons {
	margin: 20px 0;
}

.social-icons a {
	background: none;
	color: rgba(255, 255, 255, 0.75);
	padding: 0;
	margin: 0 10px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.social-icons a:hover {
	background: none;
	text-decoration: none;
	color: goldenrod;
}

.social-icons a i {
	font-size: 1.5rem;
}

.social-icons a span {
	margin-left: 0.2em;
	display: inline-block;
	vertical-align: middle;
}