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

body,
html {
	height: 100%;
	font-family: Montserrat, sans-serif;
}

.hero {
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: start;
	color: white;
	text-align: left;
	padding-top: 20px;
}

.logo {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: "Montserrat ExtraBold", Montserrat, sans-serif;
	font-optical-sizing: auto;
	font-size: 48px;
	text-shadow: 1px 1px 10px black;
}

.hero p {
	text-shadow: 1px 1px 10px black;
	font-size: 30px;
	margin-bottom: 40px;
	margin-top: -15px;
	font-weight: 500;
}

.buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero .buttons {
	display: flex;
	justify-content: space-between;
}

.content {
	margin-left: 80px;
}

.hero .buttons .btn-sunset {
	width: 33%;
}

.btn-sunset {
	background: linear-gradient(90deg, #ffb019 25%, #810b00 90%);
	color: #fff;
	border: unset;
	border-radius: 50px;
	padding: 10px 30px;
	font-size: 18px;
	text-decoration: none;
	font-weight: bold;
}

.btn-sunset:hover {
	background: linear-gradient(90deg, #fff 35%, #fff 100%);
	color: #000;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 32px;
	}
	.hero p {
		font-size: 20px;
	}
	.content {
		margin: 0;
		padding: 0 20px;
	}
	.hero .buttons .btn-sunset {
		width: 100%;
		padding: 5px 0;
	}
}
