html, body {
    font-family: 'Montserrat', sans-serif;
    color: #17252a;
    background: #fff;
    line-height: 1.5;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    html, body {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    html, body {
        font-size: 15px;
    }
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}
h2.small {
    line-height: 1.3;
}

a {
    color: #35a59f;
}
a:hover {
    color: #21577a;
}

::selection {
    background: #2c88838e; /* WebKit/Blink Browsers */
}
::-moz-selection {
    background: #2c88838e; /* Gecko Browsers */
}

.btn {
    border-radius: 30px;
    transition: all .12s ease-out;
    font-size: 16px;
    padding: 6px 25px;
}
.btn-primary {
    background: #35a59f;
    border: 3px solid #35a59f;
    color: #fff;
}
.btn-primary:hover {
    background: #fff;
    border: 3px solid #35a59f;
    color: #35a59f;
}

.darkText {
    color: #17252a;
}

.mainContainer {
    display: grid;
    grid-template-areas:
    "header"
    "content "
    "footer";

    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-gap: 0;

    height: 100vh;
}

.mainHero {
    grid-area: header;
    background: #35a59f;
    padding: 3rem 0;
    color: #feffff;
    box-shadow: inset 0 -200px 300px -200px #00000033;
}

.mainContent {
    grid-area: content;
    padding: 3rem 0;
}

.mainFooter {
    grid-area: footer;
    background: #35a59f;
    color: #feffff;
    font-size: 16px;
    padding: 3rem 0;
}
.mainFooter a {
    color: #feffff;
}


