@charset "utf-8";


/* PALETTE: dark purple #160226, gray #545059, white */


/* GENERAL TEXT */

header, header a, nav, nav a, h1, h2, h3, .caption {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: white;
    text-decoration: none;
}

header {
    float: left;
    padding: 0px 28px;
}

h2 {
    font-size: 24px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
}

p, li {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: .04em;
    padding-bottom: 12px;
}

.aboutdesc {
    list-style: none;
}


/* BASIC STRUCTURE */

body {
    background-color: #160226;
    color: white;
}

/* splash class for full-page background image */
.bgsplash {
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* index background image */
#bghome {
    background-image: url("../images/home.jpg");
}

/* about background image */
#bgabout {
    background-image: url("../images/about.jpg");
}

#main {
    margin: 175px 30px 30px 30px;
    max-width: 800px;
}


/* NAVIGATION */

#topnav {
    overflow: hidden;
    position: fixed;
    top: 0;
    background: #160226; /* for browsers without gradient support */
    background: linear-gradient(rgba(22, 2, 38, 1), rgba(0, 0, 0, 0));
    height: 175px;
    width: 100%;
    padding-top: 24px;
}

nav ul {
    list-style: none;
    float: right;
}

nav li {
    display: inline-block;
    padding: 12px 28px;
    text-align: center;
}

a:hover, a:active, .currentpg {
    color: white;
    text-decoration: underline;
}


/* PORTFOLIO CONTENT */

.portfolio {
    width: 100%;
    margin-top: 6px;
    cursor: pointer;
}

.portfolio-modal {
    display: block;
    max-width: 100%;
    margin: auto;
    margin-bottom: 12px;
}

.modal-header {
    border: 0px;
}

.modal-content {
    background: #545059;
}

.caption {
    font-size: 12px;
    line-height: 125%;
    padding-bottom: 12px;
}

.close {
    text-shadow: 0 0 0 #545059;
    cursor: pointer;
}