/** Variables */
:root {
    --primary-color: #03aa8c;
    --secondary-color: #fa965a;
}
/** Fonts Import */
@font-face {
    font-family: Lora;
    src: url(lora.ttf);
    font-display: swap;
}
/** Selection */
::selection {
    text-shadow: none;
    color: #fff;
    background: #03aa8c;
}
/** Resets */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0; margin: 0;
}
/** Base */
html, body {
    width: 100vw;
    overflow-x: hidden;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    position: relative;
    min-height: 100vh;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;

    color: #212529;
}
/** Headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;

    font-family: "Lora", serif;
}
/** Paragraphs, Lists, Links */
p, ul {
    margin-bottom: 1rem;
}
ul {
    padding-left: 1.2em;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
a:hover {
    border-color: var(--primary-color);
}
a svg {
    margin-right: 7px;
}
/** Header & Logo */
header {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
header img {
    width: 325px;
    max-width: 100%;
}
/** Container & Content */
.container {
    max-width: 600px;
    padding: 0 18px;
}
section {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
/** Overlay */
body:not(.show-overlay) .overlay {
    display: none;
}
.overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10;
    width: 100vw; height: 100vh;
    display: flex;
    justify-content: center;
    padding: 36px 0 18px 0;

    font-size: 0.85rem;

    background: white;
}
.overlay__close {
    position: fixed;
    top: 16px; right: 24px;
    z-index: 15;
    width: 56px; height: 56px;
    cursor: pointer;
}
@media screen and (max-width: 600px) {
    .overlay__close {
        top: unset;
        bottom: 16px;
    }
}
.overlay__close img {
    width: 100%;
    height: auto;
}