@font-face {
    font-family: "BungeeTint";
    src:
      local("BungeeTint"),
      url("../fonts/BungeeTint-Regular.5215049cade6.ttf") format("truetype"),
      url("../fonts/BungeeTint-Regular.3c68e19ec3de.woff") format("woff"),
      url("../fonts/BungeeTint-Regular.52b29212a511.woff2") format("woff2");
}

@font-face {
    font-family: "Josefin Sans Regular";
    src: url("../fonts/josefin-sans/JosefinSans-Regular.aff001b45565.ttf");
}

@font-face {
    font-family: "Josefin Sans Bold";
    src: url("../fonts/josefin-sans/JosefinSans-Bold.9880fc0845d0.ttf");
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body * {
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans Regular', serif;
    font-size: 1.25rem;
    color: #333;
}

.outer {
    background-color: #f7f7f7;
    min-height: 100%;
}

.inner {
    background-color: antiquewhite;
    max-width: 80rem;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
}

.main {
    flex-grow: 1;
}

figure {
    margin: 0;
}

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

figure img {
    box-shadow: 0 0 1rem rgba(0, 0, 0, .15);
    border: .25rem solid #eaeaea;
    border-radius: 1rem 1rem 1rem 1rem;
}

section.page-section {
    padding: clamp(1rem, 0.6364rem + 1.8182vw, 2rem) clamp(1rem, 0.2727rem + 3.6364vw, 3rem);
}
  
h1 {
    font-family: 'BungeeTint', display;
    color: black;
    font-size: clamp(2.5rem, -0.2273rem + 13.6364vw, 10rem);
    line-height: .1;
}

h2 {
    font-family: 'Josefin Sans Bold';
    letter-spacing: -.1875rem;
    text-transform: lowercase;
    font-size: clamp(1.75rem, 1.1136rem + 3.1818vw, 3.5rem);
    letter-spacing: -.125rem;
    transform: translateX(.5rem);
}

h2.page-title {
    font-family: 'BungeeTint', display;
    font-size: 2rem;
    line-height: .1;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h3 {
    text-transform: uppercase;
    font-family: "Josefin Sans Bold";
    font-weight: bold;
    letter-spacing: .25rem;
    font-size: clamp(1.25rem, 0.8864rem + 1.8182vw, 2.25rem);
    margin: .5rem 0;
}

h2.page-title a {
    text-decoration: none;
}

h2.page-title span {
    font-size: 1.25em;
}

article {
    padding: 1rem 0;
}

footer {
    padding: 2rem;
    font-size: .875rem;
    text-align: center;
    position: relative;
    margin-top: 4rem;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: .0625rem;
    width: 12rem;
    background-color: #333;
}