html {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    height: 100%;
}

header {
    height: 70%;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,.2) inset;
}

header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header h1 {
    margin: 0px;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* The nav bar */


/* Main content */

.mainwrapper {
    margin: -60px 0 0;
    position: relative;
}

.row {
    margin: auto;
    max-width: 1200px;
}

.card {
    margin: 10px;
    padding: 20px 0;
    box-shadow: 0px 4px 10px 0px gray;
    background-color: white;
}

.card p {
    margin: 10px 30px 10px 30px;
    text-align: justify;
}

.card h2 {
    margin: 20px 30px 30px 30px;
    text-align: center;
}

img.fullwidth {
    width: 100%;
    display: block;
    margin: 20px 0 0;
}

.main {
    width: 75%;
    float: left;
}

.sidebar {
    width: 25%;
    float: left;
}

@media screen and (max-width: 900px) {
    .main, .sidebar {
        width: 100%;
    }
}

/* Footer */
footer {
    color: gray;
    text-align: center;
    padding: 10px;
    clear: both;
    /* box-shadow: 0px -4px 8px lightgray; */
}

