body {
	margin: 0;
	font-family: "playwriteDELA", serif;
	background: #f2efe6;
	color: #2c2a29;
	padding-top: 90px;
}

header {
	background: white;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

header img {
	height: 60px;
	margin-right: 20px;
}

nav a {
	margin: 0 5px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	font-size: clamp(20px, 3vw, 36px);
}

nav a:hover {
	color: #005b8f;
}

@font-face {
	font-family: "playwriteDELA";
	src: url("../fonts/playwriteDELA.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

html {
	font-size: clamp(14px, 1.5vw, 18px);
}

h1 {
	margin-top: 40px;
	font-size: clamp(20px, 3vw, 36px);
}

img {
  margin: 0;
}

.section {
	padding: 10px;
	max-width: 1200px;
	margin: auto;
}

.btn {
	display: inline-block;
	padding: 10px 16px;
	margin-top: 20px;
	border-radius: 8px;
	background: #2b6b9a;
	color: #fff;
	text-decoration: none;
	font-size: clamp(20px, 3vw, 36px)
}