body {
    background-color: black;
    background-position: center top;
    font-family: sans-serif;
    min-width: 300px;
    padding:25px;
}

h1 {
    color: #FFF;
    font-size: 22pt;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0em;
    margin-top: 0em;
    text-transform: uppercase;
}

@media screen and (min-width: 700px) {
    h1 {
        font-size: 36pt;
    }
}

h2,h3 {
    color: #FFF;
    font-size: 18pt;
    font-weight: normal;
}

@media screen and (min-width: 700px) {
    h3 {
        font-size: 26pt;
    }
}

p {
    color: #FFF;
    font-weight: normal;
    font-size: 12pt;

    text-align: justify;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

#top-bar {
    background: #000 url("/static/images/banner.png") no-repeat center top;
    width:100%;
    height: 200px;
}

#grayout {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}





#project-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (min-width: 700px) {
    #project-area {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.project-tile {
    width: 300px;
    height: 400px;
    margin: 0;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items:center;
    text-decoration: none;
    outline:none;
}

@media screen and (min-width: 700px) {
    .project-tile {
        margin:25px;
    }
}

#project-title {
    width:100%;
    height: 50px;
    text-align:center;
    align-items:center;
    justify-content:center;
    display:flex;
}





#description-area {
    display:flex;
    justify-content: center;
    flex-direction: column;
}
@media screen and (min-width: 700px) {
    #description-area {
        max-width:1000px;
        margin: auto;
    }
}

.detail-title {
    width:100%;
    height: 50px;
    text-align:left;
    

}
.detail-tile {
    display: flex;
    flex-direction:column;
    width:100%;
    justify-content: center;
}
@media screen and (min-width: 600px) {
    .detail-tile {
        display:block;
        justify-content: left;
    }
}

.detail-image {
    width: 100%;
    min-width: 300px;
    padding: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
}

@media screen and (min-width: 700px) {
    .detail-image {
        width:30%;
        padding:25px;
    }
}

.detail-image img {
    width: 100%;
}

.detail-image > a {
    width: 100%;
}

.detail-text {
}

.detail-caption {
font-size: 10pt;
color: #BBB;
}





.gallery-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (min-width: 700px) {
    .gallery-area {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.gallery-image {
    width: 100%;
    min-width: 300px;
    padding: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
}

@media screen and (min-width: 700px) {
    .gallery-image {
        width:30%;
        padding:25px;
    }
}

.gallery-image img {
    width: 100%;
}

.gallery-image > a {
    width: 100%;
}

.gallery-caption {
font-size: 10pt;
color: #BBB;
}