html, body {
    color: #dddddd;
    background-color: #dddddd;
    font-family: "Helvetica";
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
}

    a {
        color: #5e7bb6;
        text-decoration: none;
        font-style: normal;
    }

    a:hover {
        color: #5e7bb6;
        font-style: italic;
    }

    a:visited {
        color: #5e7bb6;
        text-decoration: none;
    }

    .accent {
        color: #5e7bb6;
    }

header {
    border-top: thin solid #5e7bb6;
    border-bottom: thin solid #5e7bb6;
    background-color: #221145;
    text-align: center;
    width: 100%;
    font-size: 50px;
    padding-bottom: 5px;
    margin: 0;
}
    header .nicks {
        font-size: 11px;
        opacity: 0.3;
    }

section {
    text-align: center;
    padding: 25px;
}

    section p {
        font-size: 18px;
        -webkit-font-smoothing: antialiased;
    }

    #welcome {
        background: #e8e8e8 url("../img/boston.jpg") center no-repeat;
        -webkit-background-size: cover; /* WebKit */
        -moz-background-size: cover;    /* Mozilla */
        -o-background-size: cover;      /* Opera */
        background-size: cover;			/* Generic */
        height: auto;
    }

        #welcome h1 {
            color: mintcream;
            text-shadow: 1px 1px #5e7bb6;
            font-family: 'Ubuntu+Mono', monospace;
            font-size: 32px;
            padding: 5% 25px;
            margin: 0;
        }

        #welcome p {
            background-color: rgba(0,0,0,0.8);
            border-radius: 5px;
            padding: 25px;
            margin: 25px 50px;
        }

    #projects {
        color: #221145;
        text-align: left;
        max-width: 650px;
        height: auto;
        margin: 0 auto 40px;
    }

        #projects h1 {
            border-bottom: 2px solid #221145;
            font-family: 'Ubuntu+Mono', monospace;
            font-size: 38px;
            text-align: center;
            padding-bottom: 15px;
            width: 225px;
            margin: 10px auto;
        }

        #projects h2 {
            font-family: 'Bitter', serif;
            font-size: 28px;
            text-align: center;
        }

        #projects h3 {
            font-style: normal;
        }

        #projects p {
            margin: 15px 0;
        }

        #projects .view {
            font-size: 14px;
        }

    #contact {
        color: #221145;
        margin-bottom: 50px;
    }

        #contact h1 {
            border-bottom: 2px solid #221145;
            font-family: 'Ubuntu+Mono', monospace;
            font-size: 38px;
            text-align: center;
            padding-bottom: 15px;
            width: 225px;
            margin: 10px auto;
        }

        #contact .button {
            background-color: #221145;
            border-radius: 4px;
            padding: 5px 10px;
            margin: 10px 5px;
        }

        #contact .button:hover {
            background-color: #5e7bb6;
        }

        #contact a:link {
            text-decoration: none;
        }

footer {
    background-color: rgba(34,17,69,.95);
    border-top: thin solid #5e7bb6;
    text-align: center;
    bottom: 0;
    width: 100%;
    padding: 25px 0;
}

/* Smaller screens, mobile */
@media only screen and (max-width: 650px) {
    html, body {
        min-width: 320px; /* iPhone 4 */
    }

        section {
            padding: 10px 10px 25px 10px;
        }

        #welcome p {
            margin: 5px;
        }

}

/* Larger screens */
@media only screen and (min-width: 1100px) {
    #welcome h1 {
        font-size: 42px;
    }
    #welcome p {
        margin-left: 25%;
        margin-right: 25%;
    }
}