body {
	background-image: url('img/dungeon.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color:  white;
}

.navbar {
	background-color: #333;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1.5rem;
}

.logo {
	font-family: "Cinzel Decorative";
	font-size: 2rem;
	font-weight: bold;
	padding-right: 1.5rem;
	border-right: 3px solid white;
	margin-right: 2rem;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.navlinks {
	font-family: "Pirata One";
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.navbar .navlinks {
	flex: 1;
}

.navlinks a {
	color: white;
	font-size: 2rem;
	text-decoration: none;
	transition: color 0.3;
}

.navlinks a:hover {
	color: #ff9900;
}

#wrapper {
	max-width: 80%;
	margin: 0 auto;
	background: rgba(3, 3, 3, 0.75);
	padding: 1rem;
	margin-top: 1rem;
	border: 5px solid #333;
}

#wrapper a {
	color: #ff9900;
	text-decoration: none;
	display: block;
	width: max-content;
	margin: 0.5rem auto;
	text-align: center;
	font-family: "Pirata One";
	font-size: 3rem;
	border: 5px solid #ff9900;
	padding: 0.5rem;
}

p {
	font-family: "Almendra";
	font-size: 1.5rem;
}

#segment {
	max-width: 80%;
	margin: 0 auto;
	background: rgba(3, 3, 3, 0.75);
	padding: 1rem;
	margin-top: 1rem;
	border: 5px solid #333;
}

#segment a {
	color: #ff9900;
	text-decoration: none;
	display: block;
	width: max-content;
	margin: 0.5rem auto;
	text-align: center;
	font-family: "Pirata One";
	font-size: 3rem;
	border: 5px solid #ff9900;
	padding: 0.5rem;
}

#clue {
	justify-content: space-between;
}

footer {
	background-color: #333;
	text-align: center;
	font-family: "Almendra";
	font-size: 1.5rem;
	padding: 0.75rem 1.5rem;
	margin-top: 1rem;
}

footer a {
	color: #ff9900;
	text-decoration: none;
}

h1 {
	font-family: "Cinzel Decorative";
	font-size: 2.5rem;
	border-bottom: 3px solid white;
	width: max-content;
}

h2 {
	font-family: "Almendra";
	font-size: 2rem;
	font-weight: bold;
	color: #ff9900;
}

h3 {
	font-family: "Almendra";
	font-size: 3rem;
	font-weight: bold;
	color: #ff9900;
}

h4 {
	font-family: "Almendra";
	font-size: 1.5rem;
	color: #ff9900;
}

@media screen and (min-width: 600px) {
	#segment {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	}

	#segment h1 {
		grid-column: 1 / -1;
		text-align: center;
	}

	#segment img {
		grid-column: 1 / -1;
		width: 80%;
		height: auto;
	}

	#clue {
		grid-column: 1 / -1;
	  	margin-bottom: 2rem;
	}

	#segment p {
		width: 80%;
	}

	h1 {
		font-size: 3rem;
	}
}

@media screen and (min-width: 1100px) {
	#segment {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	#segment img {
		grid-column: span 1;
	  	width: 80%;
	  	height: auto;
	}

	#clue {
		grid-column: span 1;
		padding-left: 10%;
		border-left: 3px solid white;
	}

	#wrapper p {
		width: 80%;
	}

	#segment p {
		width: 100%;
	}
}