:root {
	--color-shades-dark: rgb(25, 25, 25);
}

body {
    font-family: system-ui, sans-serif;
		background-color: #f9f9f9;
		color: #333;
		margin: 0;
		padding: 0;
}

h1 {
	color: #2c3e50;
	text-align: center;
	margin-top: 20px;
}

p {
	text-align: center;
	font-size: 18px;
}

img {
	display: block;
	margin: 20px auto;
	width: 200px;
	border-radius: 10px;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

@media (max-width: 600px) {
	h1 {
		font-size: 24px;
	}

	p {
		font-size: 16px;
	}

	img {
		width: 150px;
	}
}

.navbar {
	box-sizing: border-box;	
}

.navbar a {
	--text-color: var(--color-shades-dark);
	border-block-end: 3px solid var(--border-color, transparent);
	color: var(--text-color);
	display: inline-block;
	margin-block-end: 0.5rem;
	margin-inline-end: 0.5rem;
	padding: 0.1rem;
	text-decoration: none;
}

.navbar a:where(:hover, :focus) {
	--border-color: var(--text-color);
}

