body {
	margin: 0;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #1a1a1a;
	background: #fff;
}

a {
	 color: #2196f3;
	text-decoration: none;
}

a:hover {
  color: #2fdb88;
  text-decoration: underline;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 1rem 1.2rem;
	padding-bottom: 0px;
}

.logo {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 1.6rem;
	color: #5c1f5c;
}

.logo img {
	height: 42px;
	margin-right: 0.5rem;
}

.nav {
	backdrop-filter: blur(42px);
    pointer-events: auto;
    background-color: #ffffffb3;
    border-radius: 3em;
    inset: 2em 2.5em auto auto;
    box-shadow: 0 0 15px #0000001a;
	padding: .75em 1.5em;
}

.nav a {
	border: 1px solid var(--black);
	border-radius: 1.5em;
	border-color: black;
	padding: 0.5rem 0.5rem;
	text-decoration: none;
	color: rgb(24, 14, 9);;
	font-weight: 400;
	font-size: .875em;
}

.main-content {
	padding: 1.2rem;
	padding-top: 0;
	margin: 0 auto;
}

.footer {
	display: flex;
	justify-content: space-between;
	background: #111;
	color: #ccc;
	padding: 2rem;
	border-radius: 1.6rem;
	flex-wrap: wrap;
	    margin: 1rem;
}

.footer a {
	color: #ffffff80;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	font-size: .875em;
}

.footer-left img {
	height: 24px;
	margin-bottom: 1rem;
}

.footer-links,
.footer-right {
	min-width: 180px;
	margin: 1rem;
	margin-top: 0;
	margin-bottom: 0;
}

.card-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin: 2rem 0;
}

.card {
	padding: 2rem;
	border-radius: 1.5rem;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #000;
}