:root {
    font-family: Lato;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.1px;

    background-color: #f7fbf1;
    color: #191d17;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

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

    /* Creates an inline low-quality placeholder */
    background-size: cover;
    background-image: url("");
}

input {
    font-size: 16px;
    padding: 10px;
}

textarea {
    font-size: 16px;
    padding: 10px;
    resize: none;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #3b6939;
    line-height: 1;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.25;
    color: #3b6939;
}

p,
ol,
ul {
    margin: 0;
}

code {
    font-size: 14px;
    border-radius: 2px;
}

button {
    font-size: 14px;
}

/* Global convenience classes */
.stretch {
    width: 100%;
}

.svg {
    filter: invert(1);
}

.center-self {
    align-self: center;
}

.subtext {
    color: #696969;
    /* Reduce line height for consistent spacing. */
    line-height: 1;
}

header {
    top: 0;
    width: 100%;
    z-index: 1;
    padding: 1rem 0;
    background-color: #f7fbf1;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 40px;
        font-weight: bold;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        font-weight: bold;
    }
}