@font-face {
    font-family: "Helvetica-Neue";
    font-style: medium;
    src: url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.woff') format("woff"),
    url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.ttf') format("truetype"),
    url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.svg') format("svg");
    }

@font-face {
    font-family: "Helvetica-Neue-Bold";
    font-style: bold;
    src: url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.woff') format("woff"),
    url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.ttf') format("truetype"),
    url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.svg') format("svg");
    }

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent; 
    text-decoration: none;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Helvetica-Neue;
}

h1, h2 {
    margin: 0;
}

h1 {
    font-family: Quieta-Medium;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-family: roboto;
    font-size: 2rem;
    font-weight: 500;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    font-family: Georgia;
    letter-spacing: .01em;
    margin: 1.3rem 0;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: justify;
    line-height: 1.1;
    font-size: 1rem;
    margin: 1.3rem 0;
}

blockquote {
    font-style: italic;
    font-size: 1.31rem;
    padding: .6rem 1rem;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.84);
    border-left: 4px solid rgba(0, 0, 0, 0.84);
    box-shadow: #cccccc 1px 1px 6px 0px;
    margin: 2rem 0;
}

iframe {
    width: 100%;
    height: 22rem;
}

#logo {
    margin: 0 auto;
    font-size: 0;
}

.article-image {
    width: 100%;
    max-width: 630px;
    margin: 1.6rem 0 0;
}

.container {
    margin: 0 auto;
    width: 75%;
}

.container-large {
    justify-content: center;
    padding: 2rem 0;
}

.header-image {
    min-height: 100%;
    max-width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top {
    position: relative;
    display: flex;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #000;
}

.navbar div {
    display: flex;
}

.navbar a {
    padding: .85rem;
}

.hamburger {
    display: none;
    position: absolute;
    padding: .85rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.article {
    max-width: 680px;
    margin: 0 auto;
}

.article-content {
    padding: 2rem 0;
}

.article-header {
    overflow: hidden;
    height: 18rem;
}

.article-content {
    color: rgba(0, 0, 0, 0.84);
    font-size: 1.31rem;
    line-height: 32px;
    text-align: justify;
    margin: 0 1.5rem;
}

.quote-text {
    margin:0;
}

.footer {
    display: flex;
    border-top: 1px solid #000;
}

.col {
    width: 33.33%;
    padding-top: .85rem;
}

.footer-link {
    padding: .85rem;
}

.flex {
    display: flex;
}

.start {
    /*text-align: start;*/
    text-align: left;
}

.center {
    text-align: center;
}

.end {
    /*text-align: end;*/
    text-align: right;
}

.red {
    color:red;
}

.blue {
    color:blue;
}

.purple {
    color:purple;
}


@media only screen and (max-width:960px) {
    .hamburger {
        display: initial;
    }

    .navbar {
        display: none;
    }

    .top {
        border-bottom: 1px solid #000;
    }

    .footer {
        flex-direction: column;
    }

    .start {
        text-align: center;
    }

    .end {
        text-align: center;
    }

    .col {
        width: 100%;
    }
}


@media only screen and (max-width:728px) {

    .article-text {
        font-size: 1.13rem;
        line-height: 28px;
    }

    .quote-text {
        font-size: 1.13rem;
        line-height: 28px;
    }
}

@media only screen and (max-width:435px) {
    h1 {
        font-size: 1.8rem;
    }

    .header-image {
        max-width: 200%;
    }

}

.nav-icon {
    height: 18px;
    padding-right: .5rem;
}

li  {
    list-style-type: none; 
}

ul.nav {
    margin: 0;
    padding-left: 1rem;
    padding-top:2.5rem;
    text-align: left;
    align-items: start;
}

a.nav {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    font-size: 1.2rem;
}