* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font: 16px Arial;
	color: #173d37;
	background: #f4f1e8;
}

header,
main,
footer {
	padding: 20px;
}

nav {
	max-width: 1000px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

nav a {
	margin-left: 20px;
}

a {
	color: #ed7044;
	font-weight: bold;
}

nav .active {
	color: #173d37;
	text-decoration: underline;
}

.logo {
	color: #173d37;
	text-decoration: none;
}

main {
	max-width: 1000px;
	margin: auto;
	min-height: 75vh;
}

.home {
	display: flex;
	align-items: center;
	gap: 50px;
}

.home div,
.home img {
	width: 50%;
}

.home img {
	height: 400px;
	object-fit: cover;
}

h1 {
	margin: 15px 0;
	font-size: 60px;
	line-height: 1;
}

h1 span {
	color: #ed7044;
}

.home div>p:first-child,
main>p:first-child {
	color: #ed7044;
	font-weight: bold;
}

.button {
	display: inline-block;
	padding: 12px 18px;
	color: white;
	background: #ed7044;
	text-decoration: none;
}

button {
	padding: 6px 10px;
	color: #173d37;
	background: #dce9df;
	border: 0;
	cursor: pointer;
}

button:hover {
	background: #ed7044;
	color: white;
}

button.copied {
	background: #173d37;
	color: white;
}

ul {
	display: flex;
	gap: 20px;
	padding: 0;
	list-style: none;
}

li {
	width: 33%;
	padding: 20px;
	background: #dce9df;
	border-radius: 4px;
}

footer {
	color: white;
	background: #173d37;
}

