html, body {
    margin: 0px;
    background: url(../images/background.jpg) no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    color: white;
}

h2 {
    margin: 0px;
}

a, a:active, a:visited {
    color: black;
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
}

footer a {
    color: white !important;
}

input {
    outline: none;
    border: 0px;
    background: white;
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 4px;
    box-sizing: border-box;
    font-family: 'Source Sans Pro';
}

input[type='submit'] {
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

button {
    outline: none;
    border: 0px;
    background: white;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    box-sizing: border-box;
    margin-right: 4px;
}

select {
    outline: none;
    border: 0px;
    background: white;
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

textarea {
    outline: none;
    border: 0px;
    resize: none;
    padding: 16px;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', Arial, sans-serif;
}

.small {
    padding: 2px;
    padding-left: 3px;
    padding-right: 3px;
}

.wrapper {
    margin: 16px auto;
    width: 900px;
}

#header {
    box-sizing: border-box;
    position: relative;
}

#header .big {
    font-size: 40px;
}

#header .small {
    font-size: 20px;
    margin-top: -4px;
}

#nav {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

#nav .item {
    text-align: center;
    display: inline-block;
    cursor: pointer;
    margin-left: 12px;
    font-size: 17px;
}

#nav .item:first-child {
    margin-left: 0px;
}

#nav .item:hover {
    text-decoration: underline;
}

#nav .item.active {
    text-decoration: underline;
}

.delimiter {
    margin-top: 12px;
    border-bottom: 1px solid white;
}

#content {
    margin-top: 32px;
    padding: 48px;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    background-image: url(../images/cardboard-flat.png); /* Background pattern from subtlepatterns.com */
}