@font-face {
    font-family: "Old Stamper";
    src: url("fonts/old-stamper.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    src: url("fonts/inter.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    src: url("fonts/inter-italic.ttf") format("truetype");
    font-style: italic;
}
body {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-family: "Inter";
    display: flex;
    justify-content: center;
    margin: 8px;
}
.container {
    width: 100%;
    text-align: center;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 1024px) {
    .container {
        width: 960px;
    }
}
span.red {
    color: #ff2424;
}
h1 {
    font-family: "Old Stamper";
    font-size: 6em;
    margin-bottom: 0;
    font-weight: normal;
}
h2 {
    font-size: 1.2em;
    margin-top: 0;
    font-weight: bold;
}
h3 {
    font-size: 1.4em;
    font-weight: bold;
}
h4 {
    font-weight: bold;
    font-style: italic;
    color: #ff2424;
}
div.line-break {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    margin: 20px 0;
}
article {
    margin: 0 1em;
}
img {
    width: 200px;
}
ul {
    text-align: left;
    padding-right: 1em;
}
img.map {
    display: block;
    width: calc(100% + 16px);
    margin: 0 -8px;
}
p a {
    color: #676767;
    font-style: italic;
    text-decoration: underline;
}
a.button {
    display: inline-block;
    padding: 15px 20px;
    margin:  0.5em 1em;
    background-color: #dd2424;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
a.button.icon {
    background-repeat: no-repeat;
    background-position: 15px center;
    padding-left: calc(2em + 25px);
    background-size: 2em;
}
a.button.icon.facebook {
    background-color: #3b5998;
    background-image: url("icons/facebook.svg");
}
a.button.icon.mailing-list {
    background-image: url("icons/envelope.svg");
}