@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
	font-family: Roboto, serif;
	background: #DDD;
}

body, html {
	height: 100%;
}

ul {
	list-style: none;
}

img {
	text-align: center;
	background: dimgray;
}

button {
	background: #AF4943;
	color: #F9FAF8;
	border-radius: 6px;
	box-sizing: content-box;
	padding: 6px 24px;
	font-weight: bold;
	border: none;
}

header {
	font-size: 24px;
	color: #F9FAF8;
	font-weight: bold;
}

.header-wrapper {
	background: #0E0E0E;
	color: #F9FAF8;
	display: flex;
	flex-direction: column;
}

#header, #header-content {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	max-width: 980px;
	width: 100%;
}

#header {
	display: flex;
	padding: 16px 0;
	justify-content: space-between;
}

#header-content {
	padding: 80px 0px;
	display: flex;
	justify-content: space-between;
	gap: 2em;
}

#header > ul {
	display: flex;
	gap: 1em;
}

.hero-text {
	font-size: 48px;
	color: #F9FAF8;
	font-weight: 900;
}

.hero-subtext {
	font-size: 18px;
	color: #BBB8B8;
}

.hero-button {
	margin-right: auto;
}

.hero-text-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
}

.hero-image {
	flex: 1;
}

.example-header {
	text-align: center;
	font-size: 36px;
	color: #0E0E0E;
	font-weight: 900;
	margin: 36px;
}

#example-container {
	margin: 50px auto;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	max-width: 880px;
	width: 100%;
	gap: 1em;
}

.example {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	align-items: center;
	text-align: center;
}

.example > img {
	width: 200px;
	height: 200px;
	border: 6px solid #AF4943;
	border-radius: 20px;
}

.example > div {
	max-width: 200px;
}

.quote-wrapper {
	background: #BBB8B8;
	color: #0E0E0E;
	display: flex;
	padding: 100px;
}

#quote-container {
	background: #BBB8B8;
	font-size: 36px;
	font-style: italic;
	font-weight: 300;
	color: #0E0E0E;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	max-width: 880px;
	width: 100%;
}

.quotee {
	font-weight: bold;
	text-align: end;
	font-size: 24px;
}

#signup-prompt {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 980px;
	width: 100%;
	background: #AF4943;
	color: #F9FAF8;
	height: 150px;
	border-radius: 8px;
	margin: 100px auto;
}

.signup-text {
	display: flex;
	flex-direction: column;
}

.signup-button {
	border: 2px solid white;
}

footer {
	background: #0E0E0E;
	text-align: center;
	padding: 30px;
	color: #F9FAF8;
}
