/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

body {
    font: 16px/26px Helvetica, Helvetica Neue, Arial;
    color: white;
    line-height: 1.2;
    font-family: 'Noto Sans', sans-serif;
}

.wrapper {
    width: 90%;
    margin: 0 5%;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.main article h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0.5em;
}

@font-face {
    font-family: 'Marianina regular';
    src: url('../fonts/Marianina_Regular.eot');
    src: url('../fonts/Marianina_Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Marianina_Regular.woff') format('woff'),
    url('../fonts/Marianina_Regular.ttf') format('truetype'),
    url('../fonts/Marianina_Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

a, a:visited,
a:hover, a:visited:hover,
a:focus, a:visited:focus,
a:active, a:visited:active {
    color: white;
    text-decoration: none;
}

.main-container {
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-container p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.78;
}

.main-container h1 {
    font-family: "Marianina Regular", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

.main-container article {
    margin-top: 15vh;
    min-height: calc(85vh - 80px)
}

.header-container {
    height: 80px;
    text-align: center;
}

.header-container img{
    height: 50px;
    margin-top: 15px;
    width: auto;
}

.btn {
    background-color: rgba(0,0,0,0.3);
    border: solid white 1px;
    display: inline-block;
    position: relative;
    padding: 0.2em 0.3em 0.4em 0.3em;
    line-height: 1.1;
    letter-spacing: 2px;
    @include transition(background-color 0.14s ease-in-out);
}

.btn:hover,
.btn:focus,
.btn:active {
    background-color: rgba(0,0,0,0.5);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 768px) {

    .main article h1 {
        font-size: 60px;
    }

    .main-container p {
        font-size: 28px;
    }

    .wrapper {
        width: 680px;
        margin: 0 auto;
    }

    .main article {
        float: left;
        width: 90%;
    }
}

@media only screen and (min-width: 1030px) {
    .main-container article {
        margin-top: 25vh;
        min-height: calc(75vh - 80px);
    }

    .wrapper {
        width: 1000px; /* 1140px - 10% for margins */
        margin: 0 auto;
    }

    .main article {
        width: 72%;
    }
}

@media only screen and (min-width: 1240px) {
    .wrapper {
        width: 1050px; /* 1140px - 10% for margins */
        margin: 0 auto;
    }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}