@import url("https://fonts.googleapis.com/css?family=Montserrat:300,700&display=swap");
body, html {
    margin: 0;
}

body {
    height: 100%;
    font-family: 'Montserrat';
    display: none;
}

header {
    position: absolute;
    padding: 1em;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 2em);
    background: white;
    text-transform: uppercase;
}

header a {
    text-decoration: none;
    color: black;
}

header a.logo {
    font-weight: bold;
    text-transform: uppercase;
}

header nav ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    padding: 1em;
}

header nav ul a:hover {
    color: white;
}

.wrapper {
    display: grid;
    grid-template-columns: auto;
}

.wrapper section {
    padding: 3em;
}

.wrapper section h1, .wrapper section h2, .wrapper section .read-btn {
    text-transform: uppercase;
    margin: 0;
}

.wrapper section h2 {
    font-size: 1.4rem;
}

.wrapper section .read-btn {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding-left: 1.4em;
    background: url("../img/arrow.svg") no-repeat;
    background-size: 16px;
    background-position: 0 1px;
}

.wrapper section .btn-download {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.wrapper section .icon-apk {
    background: url("../img/android.png") no-repeat;
    background-size: 40px;
    background-position: 0 1px;
}

.wrapper section .icon-sdk {
    background: url("../img/sdk.svg") no-repeat;
    background-size: 40px;
    background-position: 0 1px;
}

.wrapper section .icon-android-studio {
    background: url("../img/android-studio.svg") no-repeat;
    background-size: 40px;
    background-position: 0 1px;
}

.wrapper section .primary {
    padding: 1.5em 1.5em 1.5em calc(3em + 50px);
    background-position: 3em;
    border: 1px solid gray;
    border-width: 1px 1px 1px 0;
    display: inline-block;
    margin-top: 1em;
    margin-left: -3em;
}

.wrapper section .clipper {
    overflow: hidden;
}

.wrapper section.hero {
    padding-top: 8em;
    background: url("../img/background.jpg");
    background-size: cover;
}

.wrapper section.hero p {
    width: 70%;
    font-size: 1.2rem;
    margin-bottom: 1em;
}

.wrapper section.hero h1 {
    font-size: 2.4rem;
}

.wrapper section.hero a:hover {
    color: gray;
}

.wrapper section.sidebar, .wrapper section.subscribe {
    font-size: .9rem;
    line-height: 1.6em;
}

.wrapper section.sidebar {
    background-color: #FFCC00;
}

.wrapper section.sidebar a:hover {
    color: white;
}

.wrapper section.sidebar .read-btn {
    margin-top: 2em;
    display: block;
    background-position: 0 .3em;
}

.wrapper section.subscibe input {
    width: calc(100% - 2em);
    padding: calc(1em - 2px);
    font-family: 'Montserrat';
    margin-bottom: 1em;
}

.wrapper section.subscibe button {
    width: 100%;
    padding: 1em;
    background: black;
    color: white;
    border: none;
    font-family: 'Montserrat';
    cursor: pointer;
}

.wrapper section.subscibe .btn-subscribe {
    text-transform: uppercase;
    font-weight: bold;
    font-size: .7rem;
}

@media only screen and (max-width: 1020px) {
    section.hero p {
        width: 100% !important;
    }
}

@media only screen and (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1020px) {
    header {
        background: none;
    }
    .wrapper {
        -ms-grid-columns: 70% auto;
        grid-template-columns: 70% auto;
        -ms-grid-rows: 40% auto;
        grid-template-rows: 40% auto;
        grid-template-areas: "hero featured" "hero subscribe";
        height: 100vh;
    }
    section.hero {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1;
        grid-area: hero;
    }
    section {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 1800px) {
    html {
        font-size: 21px;
    }
}
/*# sourceMappingURL=main.css.map */