@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
	border: none;
	box-sizing: border-box;
	color: inherit;
	font-family: "Rubik", sans-serif;
	list-style: none;
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
    transition: all 0.2s ease-in-out;
}

:root {
	font-size: 16px;
	scroll-behavior: smooth;
	--primary: #17b8a6;
	--secondary: #89f1e5;
	--text: #111;
	--text-light: #333;
	--bg: #fff;
}

header {
	align-items: center;
	background: var(--bg);
	color: var(--text);
	display: flex;
	height: 4.5rem;
	justify-content: space-between;
	padding: 1rem 2rem;
}
header h2 {
	font-weight: 700;
}
header nav {
	display: none;
}
header nav ol {
	align-items: center;
	background: #fffa;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	display: flex;
	flex-direction: column;
	font-size: 1.25rem;
	gap: 1.5rem;
    height: calc(100vh - 4.5rem);
	left: 0;
	padding: 2rem;
	position: absolute;
	top: 4.5rem;
	width: 100%;
}

header #hamburger {
	align-items: center;
	aspect-ratio: 1;
	background: var(--text);
    border-bottom: 1px solid var(--bg);
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0 0 var(--text);
	display: flex;
	height: 2.5rem;
	justify-content: center;
    margin-bottom: 0.5rem;
	padding: 0.5rem;
	width: 2.5rem;
}
header #hamburger:is(:focus, :active, :focus-within) {
    box-shadow: none;
    margin-bottom: 0;
}
header #hamburger-close {
	display: none;
}
header #hamburger svg {
	fill: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.serif {
	font-family: "Playfair Display", serif;
}
p,
a,
li,
span,
button,
input,
textarea,
.sans-serif {
	font-family: "Rubik", sans-serif;
}
section {
    min-height: 90vh;
    max-height: calc(100vh - 4.5rem);
	padding: 2rem;
    padding-bottom: 0;
}
section h2 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
section img {
    padding: 2rem 4rem;
    width: 100%;
}
section p {
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 1rem;
}
section button {
	align-items: center;
	background: var(--text);
    border-bottom: 1px solid var(--bg);
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0 0 var(--text);
    color: var(--bg);
	display: flex;
	height: 3rem;
	justify-content: center;
    margin-bottom: 0.5rem;
	padding: 0.5rem;
    width: 100%;
}
section button:is(:focus, :active, :focus-within) {
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* https://marketplace-positivus.wstd.io/ */