/* font-family: dharma-gothic-c,
sans-serif;

font-weight: 900;

font-style: normal;

font-family: 'Roboto Mono',
monospace;

*/



* {
    box-sizing: border-box;
}



main {
    margin-bottom: 100px;
}

html,
body {
    height: 100%;
    background: #ffc70a;
    font-family: 'Roboto Mono', monospace;
    max-width: 1440px;
    margin: 0 auto;
    color: black;
    padding: 0 10px;
}

a {
    color: black;
    font-weight: 800;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

header h2 {
    text-transform: uppercase;
    font-size: 1em;
    line-height: 0
}

header a {
    font-weight: 800;
    text-decoration: none;
    color: #ffc70a;
    background: black;
    display: block;
    padding: 2px 10px;
}

.divider {
    height: 1px;
    width: 100%;
    background: black;
}

.thickdivider {
    height: 3px;
    width: 100%;
    background: black;
}

h1 {
    font-family: dharma-gothic-c, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 10em;
    text-transform: uppercase;
    line-height: 0em;
    padding-top: 10px;
    margin: .6em 0 .4em 0
}

h2 {
    font-size: 3em;
    letter-spacing: .2em;
    margin: 10px 0;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
}

h3 {
    margin: .8em 0 .2em;
    font-weight: 800;
    line-height: 0;
}

.hero {
    display: flex;
    align-items: baseline;
    margin: 10vh auto 20px;
}

.hero img {
    display: block;
    width: 50%;
    margin-right: 0px;
}

.bio {
    display: flex;
}

.bio p {
    max-width: 42%;
    margin-right: 50px;
}

summary {
    font-size: 1.3em;
    font-weight: 900;
    letter-spacing: .1em;
    padding: 8px;
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
}

summary:focus {
    outline: none;
    border-radius: 0;
    background-color: black;
    color: #ffc70a;
}


.thumbnails {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin: 8px 0;
}

.thumbnails img {
    width: 100%;
}

.thumbnail_container {
    margin: 0 20px 0 0;
    max-width: 400px;
}

details[open] summary ~ * {
    animation: open .5s ease-in-out;
}

@keyframes open {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.work_hero {
    margin: 40px 0 40px 0;
    width: 100%;
}

.work_hero img {
    max-width: 1440px;
    width: 100%;

}

.work_thumbnail {
    width: 100%;
    max-width: 680px;
}

.work_thumbnail img {
    width: 100%;

}

.work_thumbnail3 {
    width: 100%;
    max-width: 450px;
}

.work_thumbnail3 img {
    width: 100%;

}

.flexwrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sketch {
    margin-bottom: 30px;
    width: 100%;
}

.contact p {
    line-height: 1em;
}

.contact a {
    color: black;
    font-weight: 900;
}

footer {
    margin-top: 30px;
    color: #ffc70a;
    background: black;
    padding: 4px 10px;
}

/*-------------- MOBILE -------------- */

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

    .bio {
        flex-direction: column;
    }

    .bio p {
        max-width: 100%;
        margin-right: 0;
    }

    header {
        flex-direction: column;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 15vw;
    }

    .thumbnails img {
        width: 100%;
    }
}
