* {
	margin: 0;
	padding: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

:root {
	--base-gap: 2rem;
}

@font-face {
	font-family: Aileron;
	src: url("/fonts/Aileron-Regular.woff2") format("woff2");
	font-display: swap;
}

.container {
	display: flex;
	flex-direction: column;
	margin-inline: var(--base-gap);
	margin-bottom: var(--base-gap);
	min-height: calc(100vh - (var(--base-gap) * 8));
}

body {
	width: 100%;
	height: 100%;
	background: #36302f;
	color: #f7f7f7;
	font-family: 'Aileron', 'Aileron-Regular', sans-serif;
}

a {
	color: #ffde47;
}

a:hover, a#burger {
	text-decoration: none;
}

a#burger:hover {
	opacity: 0.7;
}

.logo-tagline {
	display: flex;
	flex-direction: column;
}

.logo svg {
	width: 150px;
}

.atom-list {
	display: flex;
	gap: var(--base-gap);
	justify-content: center; 
	flex-wrap: wrap;
}

.atom-listing {
	transition: opacity 0.3s ease, transform 0.3s ease;
	margin: .4em .4em 1em .4em;
}

.atom-listing:hover {
	transform: rotate(0.0015turn);
}

img {
	max-width: 100%;
  	height: auto;
}

header {
	display: flex;
	justify-content: space-between;
	align-content: center;
	padding: var(--base-gap);
}

footer {
	display: flex;
	align-content: center;
	padding: var(--base-gap) var(--base-gap) calc(var(--base-gap) / 2) var(--base-gap);
	justify-content: flex-start;
}

header > * {
	flex-basis: auto;
}

nav {
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	gap: calc(var(--base-gap) / 4);
	list-style: none;
	margin-left: 0;
}

h1 {
	font-size: 3rem;
	margin-bottom: 1.4rem;
}

h2 {
	margin-bottom: 1.2rem;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1.4rem;
}

hr {
	width: calc(100% - var(--base-gap) * 2);
  	margin: 0 auto;
  	border: 0;
  	background-color: #f7f7f7;
  	height: 1px;
}

ul {
	margin-left: var(--base-gap);
}

figcaption {
	line-height: 1.6;
}

@media (max-width: 440px) {

	header {
		display: flex;
		flex-direction: column;
		margin-bottom: calc(var(--base-gap) / 2);
		gap: calc(var(--base-gap) / 2);
	}
  
}


/* #946e5b, #010101, #382c28, #ffde47 */