@font-face {
    font-family: 'Safira March';
    src: url('./fonts/Safira March.otf');
}

@font-face {
    font-family: 'Flamenco';
    src: url('./fonts/Flamenco.ttf');
}




body {
    font-family: 'Safira March', sans-serif;
    background-image: url('./img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow-y: hidden;
}




/* Links*/


a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}




/* Wrappers */


.wrapper {
    display: block;
    position: relative;
}

.wrapper.fullscreen.atleast {
    min-height: 100vh;
}


.wrapper.spacing-top {
    padding-top: 100px;
}

.wrapper.regular {
    padding: 50px 0;
}


.wrapper.fullscreen.has-space > .fullscreen-segment {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}




/* Coming soon block */


.coming-soon {
    display: block;
    position: relative;
}
.coming-soon .article-wrap {
    display: block;
    text-align: center;
    padding: 25px 0 50px;
}
.coming-soon .article-wrap .article {
    /*margin-bottom: 75px;*/
}


/* Logo */


.logo-wrap {
    display: block;
    position: relative;
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
}
.logo-wrap .logo {
    display: block;
    position: relative;
    text-align: center;
}
.logo-wrap .logo img {
    width: 100%;
}




/* Articles */


.article {
    font-size: 1.25rem;
    font-weight: 300;
}


.article h1,
.article h2 {
    font-size: 1.35rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1rem;
    margin-bottom: 0;
}
.article h1 span {
    letter-spacing: 1rem;
    font-weight: bold;
}
.article a {
    font-family: 'Flamenco', sans-serif;
    color: #807F7A;
    font-weight: 600;
    font-size: 1.35rem;
}




/* Media querys */
@media (max-width: 768px) {


    body {
        background-position:  0 0;
    }




    .article h1,
    .article h2 {
        font-size: 1.25rem;
        letter-spacing: 0.75rem;
    }
    .article h1 span {
        letter-spacing: 0.5rem;
    }
}


@media (max-width: 575px) {


    body {
        background-position: 0 0;
    }




    /* Articles */

    .article {
        font-size: 1.1rem;
        font-weight: 300;
        margin-bottom: 15px;
    }
    .article h1,
    .article h2 {
        font-weight: 300;
        font-size: 1.2rem;
        letter-spacing: 0.5rem;
    }
    .article h1 span {
        display: none;
    }
    .article a {
        font-size: 1.2rem;
    }



    /* Logo */

    .logo-wrap .logo img {
        width: 90%;
    }
}