/* Requirements */
/* - Build it from scratch  */
/* - Make use of: classes, flexbox, background image,  */

/* Stretch Goals */
/* - Make it your own hometown, country, or whatever place you like */
/* - Use a different color palette */
/* - Add a google font */
/* - Find a way to use hover */
/* - Add a whole new section */

/* Color Palette */
/* --dark-slate-grey: #335c67ff;
--vanilla-custard: #fff3b0ff;
--honey-bronze: #e09f3eff;
--brown-red: #9e2a2bff;
--night-bordeaux: #540b0eff; */

body {
	margin: 0;
	text-align: center;
	font-family: 'Spinnaker', sans-serif;
}

img {
	width: 200px;
}

#hero {
	background-image: url('images/thailand-hero.jpg');
	background-size: cover;
	padding: 300px 0;
	color: antiquewhite;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1,
h2,
h3,
h4,
p {
	text-shadow: 0px 0px 1px black;
}

#title {
	background-color: #335c67;
	padding: 5px 20px;
	border-radius: 5px;
}

#subtitle {
	background-color: #540b0eff;
	padding: 5px 20px;
	border-radius: 5px;
}

#activities-section {
	background-color: rgb(244, 238, 204);
	padding: 1px;
}

#activities-title {
	margin-top: 40px;
}

#activities {
	display: flex;
	justify-content: space-evenly;
	margin-top: 50px;
}

.activities-img {
	border-radius: 10px;
}

#tour-guide-section {
	margin: 80px auto;
	padding: 40px 80px;
	width: 600px;
	background: #e09f3eff;
	color: antiquewhite;
	display: flex;
	gap: 40px;
	border-radius: 15px;
}

#tour-guide {
	width: 300px;
	border-radius: 10px;
}

#tour-guide:hover {
	opacity: 0.9;
	transition: 0.3s ease;
}
