@font-face {

    font-family: 'Noto Serif';

    src: url('fonts/NotoSerif.woff2') format('woff2'),

    url('fonts/NotoSerif.woff') format('woff');

    font-weight: normal;

    font-style: normal;

    font-display: swap;

}



body {

    font-family: 'Noto Serif', serif;

}

.home-header {

    position: relative;

    width: 100%;

    height: 500px;

    max-height: 100vh;

    background: url('img/background.jpg') center no-repeat black;

    background-size: cover;

}

.home-header .content {

    position: absolute;

    top: 50%;

    left: 50%;

    -webkit-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    color: #fff;

    text-align: center;

}

.home-header h1 {

    margin: 0;

    padding: 0;

    font-size: 60px;

    line-height: 1.4;

}
.home-header h1 img {
    margin-bottom: 0;
    margin-top: 20px;
}


ul.menu {

    margin: 0;

    padding: 0;

    position: absolute;

    z-index: 1;

    top: 20px;

    right: 20px;

}

ul.menu li {

    display: inline-block;

    vertical-align: top;

    margin: 0;

    padding: 0;

}

ul.menu a {

    text-decoration: none;

    /*color: currentColor;*/

    padding: 5px 10px;

}

ul.menu a:hover {

    text-decoration: underline;

}

body.home ul.menu a {

    color: #fff;

}



#primary {

    max-width: 38em;

    margin: 0 auto;

    padding: 40px 20px 60px;

}



.site-footer {

    background: #333;

    color: #fff;

    text-align: center;

    padding: 10px 20px;

    font-size: 12px;

}

.site-footer a {

    color: #fff;

}



/* MOBILE */

@media (max-width: 768px) {

    .home-header h1 {

        font-size: 30px;

    }

}