@charset "utf-8";

html {
    font-family: 'Montserrat', sans-serif;
    background-color: #f1f3f5;
    height: 100%;
}

body {
    width: 70%;
    margin: 0 auto;
    height: auto;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.05);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    background-color: #f8f9fa;
    position: relative;
}

section {
    padding: .5rem 1rem;
}

main {
    height: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

header {
    padding: .5rem 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(0,0,0,.05);
    box-shadow: 0 0.25rem 0.125rem 0 rgba(0,0,0,.05);
}

header .logo-image {
    height: 50px;
}

header .logo-text {
    height: 20px;
    padding: 15px 0;
}

/* Main */

main {
    margin: auto;
    width: 80%;
}

main img {
    display: block;
}

@media screen and (max-width: 1200px) {
    main {
        width: 100%;
    }

    main img {
        width: 100%;
    }
}

main > article {
    margin: 30px 0 0 0;
}

article > h1 {
    background-image: linear-gradient(to bottom right, #1273ae, #54b8d2);
    border-radius: 5px;
    padding: 2px 4px;
    font-weight: 500;
    color: #ffffff;
    font-size: 1rem;
}

article > h2 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-top: 1em;
}

.link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

/* Footer */

footer nav {
    background-color: #949292;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: .5rem 1rem;
    margin: 0px auto;
}

footer ul::after {
    clear: both;
    content: "";
    display: table;
}

footer ul > li {
    display: block;
    float: left;
}

footer ul > li::after {
    content: "|";
    padding: 0 10px;
}

footer ul > li:last-of-type::after {
    content: "";
}

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

footer a:hover {
    font-weight: 600;
}
