body {
    margin: 0;
    background-color: #111;
    color: #fefefe;
    font-family: Helvetica, Sans-Serif;
}

.header,
.content,
.footer {
    border-left: 15px solid rgb(255, 21, 21);
    max-width: 976px;
    margin: 0 auto;
    padding: 15px;
}

@media (max-width: 1023px) {

    .header,
    .content,
    .footer {
        margin: 0 0 0 15px;
    }
}

.header {
    height: 100px;
    text-align: right;
    font-weight: bold;
    font-variant: small-caps;
}

.title-wrap {
    display: inline-block;
}

.title {
    font-size: 60px;
}

.title a {
    color: #fefefe;
    text-decoration: none;
}

.subtitle {
    font-size: 30px;
    text-align: right;
}

.footer {
    height: 30px;
    text-align: right;
    font-size: 0.7em;
}

.content {
    min-height: calc(100vh - 250px);
}

.picture {
    display: inline-block;
    background-color: black;
    padding: 5px;
    border: 1px dashed #ccc;
    margin: 0 10px 5px;
    text-align: center;
}

.picture.left {
    float: left;
}

.picture.right {
    float: right;
}

.picture img {
    max-width: calc(100vw - 65px);
    height: auto;
}

.break {
    width: 100%;
    border-bottom: 15px solid rgb(202, 202, 22);
}

@media (max-width: 479px) {
    .title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 20px;
    }

    .header,
    .content,
    .footer {
        border-left: 0;
        margin: 0;
    }

    .header {
        height: 65px;
    }

    .content {
        min-height: calc(100vh - 215px);
    }    
    
    .picture.left, .picture.right {
        float: none;
    }
}

a {
    color: #99f;
}

a.project {
    color: #fefefe;
    text-decoration: none;
}

a.project div {
    border-radius: 5px;
    padding: 10px;
    padding-left: 130px;
    min-height: 87px;
    margin-bottom: 8px;
}

a.project div:hover {
    background-color: #222;
}

a.project img {
    float: left;
    margin-left: -120px;
    margin-right: 10px;
    background-color: black;
    padding: 5px;
    border: 1px dashed #ccc;
}

h3 {
    margin-top: 0;
}

.date {
    font-size: 0.8em;
    text-align: right;
}

.banner {
    text-align: center;
}

.banner img {
    max-width: calc(100vw - 100px);
    height: auto;
}

form span {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

form input,
form textarea,
form button {
    background-color: #333;
    border: 1px solid #ccc;
    color: #eee;
}

form textarea {
    width: 100%;
    height: 10em;
}

form button {
    display: block;
    margin-top: 15px;
    padding: 5px 10px;
}

form button:hover {
    background-color: #777;
    cursor: pointer;
}

form button:active {
    background-color: #eee;
    color: #777;
}

form button:disabled,
form button:disabled:hover  {
    color: #555;
    border: 1px solid #555;
    background-color: #333;
    cursor: not-allowed;
}

form #result {
    margin-top: 10px;
}



