
/* Base reset */
@font-face {
  font-family: 'Brittanic Bold';
  src: url('fonts/BrittanicBold.ttf') format('truetype');
  font-weight: normal; /* you can keep normal because the font itself is bold */
  font-style: normal;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:sans-serif}
a{text-decoration:none;color:inherit}
input,textarea,button{font-family:inherit}
/* Layout & colors */
.bg-white{background-color:#ffffff}
.bg-gray-50{background-color:#f9fafb}
.bg-gray-100{background-color:#f3f4f6}
.bg-blue-600{background-color:#2563eb}
.bg-blue-700{background-color:#1d4ed8}
.text-gray-800{color:#1f2937}
.text-white{color:#ffffff}
.text-blue-700{color:#1d4ed8}
.hover\:text-blue-600:hover{color:#2563eb}
.hover\:bg-blue-700:hover{background-color:#1d4ed8}
.border{border:1px solid #d1d5db}
.rounded-lg{border-radius:.5rem}
.rounded-2xl{border-radius:1rem}
.rounded-full{border-radius:9999px}
.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}
.p-3{padding:.75rem}
.p-6{padding:1.5rem}
.p-8{padding:2rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}
.py-3{padding-top:.75rem;padding-bottom:.75rem}
.py-16{padding-top:4rem;padding-bottom:4rem}
.py-24{padding-top:6rem;padding-bottom:6rem}
.mx-auto{margin-left:auto;margin-right:auto}
.my-6{margin-top:1.5rem;margin-bottom:1.5rem}
.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-10{margin-bottom:2.5rem}
.text-center{text-align:center}
.text-lg{font-size:1.125rem;line-height:1.75rem}
.text-xl{font-size:1.25rem;line-height:1.75rem}
.text-2xl{font-size:1.5rem;line-height:2rem}
.text-3xl{font-size:1.875rem;line-height:2.25rem}
.text-4xl{font-size:2.25rem;line-height:2.5rem}
.font-bold{font-weight:700}
.font-semibold{font-weight:600}
.space-x-3>*+*{margin-left:.75rem}
.space-x-6>*+*{margin-left:1.5rem}
.space-y-4>*+*{margin-top:1rem}
.grid{display:grid}
.md\:grid-cols-3{grid-template-columns:repeat(3,1fr)}
.gap-8{gap:2rem}
.max-w-lg{max-width:32rem}
.max-w-5xl{max-width:64rem}
.max-w-6xl{max-width:72rem}
.flex{display:flex}
.items-center{align-items:center}
.justify-between{justify-content:space-between}
.justify-center{justify-content:center}
.flex-col{flex-direction:column}
.bg-cover{background-size:cover}
.bg-center{background-position:center}
.inline-block{display:inline-block}
.min-h-\[70vh\]{min-height:70vh}
