/* Main */
html {
    margin: 0;
    padding: 0;

    /* 1rem = 10px with default browser settings */
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;

    font-size: 1.6rem; /* 1.6rem = 16px with default browser settings */
    line-height: 1.5;

    font-family: Roboto, Verdana, Helvetica, sans-serif;
    color: #212529;

}

*, *::before, *::after {
    box-sizing: border-box;
}

/* General */
h1, h2, h3, h4 {
    margin: 1rem 0;
    line-height: 1.2;
    font-weight: 500;
}
h1 {
    font-size: 2.8rem;
}

p {
    margin: 1.2rem 0 1.6rem;
}

ul {
    margin: 1.2rem 0 1.6rem;
}

strong {
    font-weight: 500;
}

a {
    color: #007bff;
    text-decoration: none;
}
a:hover, a:active, a:focus {
    text-decoration: underline;
}

/* Layout */
#wrapper {
    position: relative;
    overflow: hidden;

    max-width: 96rem;
    margin: 2.4rem auto;
    border-radius: 1.5rem;

    -webkit-box-shadow: 10px 10px 112px 36px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 112px 36px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 112px 36px rgba(0, 0, 0, 0.1);
}
@media (max-width: 62em) {
    #wrapper {
        max-width: none;
        margin: 0;
        border-radius: 0;
    }
}

/* Header */
#header-img {
    width: 100%;
    height: auto;
    /* border-top-right-radius: 10px; TODO?
    border-top-left-radius: 10px; */
}

/* Content */
#content {
    padding: 2.5rem 3.5rem;
}

/* Footer */
#footer {
    padding: 2.8rem;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

#footer-logo {
    display: block;

    width: 21.1rem;
    height: auto;
    flex: 0 0 auto;

    margin: .4rem;
}

.footer-spacer {
    flex: 1 1 auto;
}

.social-link {
    position: relative;
    overflow: hidden;

    width: 21.6rem;
    height: 6.6rem;
    flex: 0 0 auto;

    margin: .4rem;
}
.social-link-logo {
    width: 6.6rem;
    height: 6.6rem;

    float: right;
}
.social-link-text {
    width: 15rem;
    height: 6.6rem;

    padding: .85rem .8rem;
    float: left;
    text-align: right;
}