body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5rem;
    color: #222;
    background-color: #c2ff66;
}

h1, h2, h3 {
    font-family: 'Open Sans';
    font-weight: 800;
}


h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

h2 {
    font-size: 2.5rem;
}

.summary {
    margin-top: 0px;
    text-align: center;
}

.navbar {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    overflow: hidden;
    background-color: #111;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
}

.navbar a {
    float: right;
    display: block;
    color: #eee;
    text-align: center;
    line-height: 60px;
    padding: 0px 20px;
    text-decoration: none;
}

.navbar a:hover {
    color: #bbb;
}

.main {
}

.sidebar {
    top: 50px;
    position: fixed;
    width: 35%;
    height: 100%;
    margin-right: 2rem;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.main-content {
    float: none;
    clear: none;
    position: relative;
    overflow: visible;
    width: 60%;
    max-width: 1200px;
    margin-left: 40%;
}

@media screen and (max-width: 1200px){
    .main {
        display: flex;
        flex-direction: column;  
    }

    .sidebar {
        position: static;
        width: auto;
        margin-right: 10px;
    }

    .main-content {
        float: none;
        width: auto;
        margin-left: 0%;
    }

    .headshot {
        border-radius: 50%;
        height: 20%;
        width: 20%;
    }

    .last {
        background: #aa0000;
    }
}

.green {
    background-color: #c2ff66;
}

.orange {
    background-color: #ffe175;
}

.purple {
    background-color: #c89eff;
}

.blue {
    background-color: #52e8ff;
}

.muted-text {
    color: #666;
    text-emphasis: italic;
}

.accent-text {
    color: #444;
    font-weight: 700;
}

section {
    padding: 5% 10%;
}


.form-row {
    display: flex;
    flex-wrap: wrap;
}

.form-control {
    font-size: 1.5rem;
    padding: .5rem;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 2px;
    border: 0;
    margin-top: .5rem;
    margin-bottom: .5rem;
    width: 100%;
    background-color: #fff7f4;
}

input.form-control {
    max-width: 80%;
}

textarea.form-control {
    resize: none;
}

.form-block {
    flex-grow: 1;
}

.form-block label {
    display: block;
    text-align: left;
    color: #666;
}

.btn {
    background-color: #444;
    color: #eee;
    font-family:  'Source Sans Pro', sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 2px;
    border: 0;
    text-decoration: none;
}

.btn:hover {
    background-color: #666;
    color: #fff;
}

.btn:active {
    background-color: #111;
}

.center-box {
    text-align: center;
}

.center-box > * {
    display: inline-block;
}

.headshot {
    border-radius: 50%;
    height: 35%;
    width: 35%;
}

#contact-error {
    color: #620a0a;
    font-weight: bold;
    display: none;
}

#contact-success {
    color: #0a610e;
    font-weight: bold;
    display: none;
}


@media screen and (max-width: 700px){

    h1 {
        font-size: 3rem;
        margin-bottom: .75rem;
        margin-top: .75rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    body {
        font-size: 1.25rem;
    }

    .form-control {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 600px){

    h1 {
        font-size: 2.5rem;
        margin-bottom: .5rem;
        margin-top: .5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    body {
        font-size: 1rem;
    }
}