/* basic css */

html, body {margin: 0; padding: 0; overflow: hidden}

/* absolute positioning */

body {
    position:fixed 0 0 0 0;
    width:100vw;
    height:100vh;
}

.upper-right-button {
    position:absolute;
    top:24px;
    left:24px;
    z-index:200;
}
.lower-right-button {
    position:absolute;
    bottom:24px;
    right:24px;
    z-index:300;
    font-size:14px;
    font-weight:500;
}
.coverup {
    position:absolute;
    line-height:100vh;
    top:0;
    bottom:0;
    right:0;
    left:0;
    text-align:center;
    vertical-align:center;
    z-index:100;
    opacity:0;
}

/* colors and fonts */

body {
    font-family:'Source Code Pro';
    font-weight:300;
}
a, a:visited, a:hover {
    color:#000000;
    text-decoration:none;
}

#artwork {
    background:#333;
}
#artwork a, #artwork a:visited, #artwork a:hover {
    color:#fff;
    text-decoration:none;
}
#artwork h1, #artwork h2, #artwork h3, #artwork p {
    font-weight:500;
    color:#fff;
}
#bio{
    background:#FF7900;
}

/* Image Substitutions */

.upper-right-button {
    display:block;
    overflow:hidden;
    text-indent:-2000px;
    background-image:url(img/seth-arrow.png);
    background-size:contain;
    background-repeat:no-repeat;
    height:36px;
    width:123px;
}
#artwork .upper-right-button {
    background-image:url(img/seth-whitearrow.png);
}

h2.about, h2.texts {
    display:block;
    overflow:hidden;
    text-indent:2000px;
    background-repeat:no-repeat;
    background-size:contain;
    height:44px;
    width:100px;
}
h2.about {
    background-image:url(img/seth-about.png);
}
h2.texts {
    background-image:url(img/seth-texts.png);
}

/* content */

.content {
    display:flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding-top:10vh;
    padding-bottom:10vh;
    padding-left:24px;
    padding-right:24px;
}
.content ul {
    margin:0;
    padding:0;
}
.content ul a {
    color:#003DFF;
}
.textual span {
    font-size:0.8em;
    margin-bottom:0.5em;
}



#artwork .content .textual {
   width:30%;
}

#artwork h2 {
    font-weight:300;
    font-size:14px;
    line-height:14px;
    padding-bottom:10px;
}
#artwork h3 {
    font-size:14px;
    line-height:24px;
}
#artwork h3::before {
    content:'[';
    font-style:normal;
    color:#888
}
#artwork h3::after {
    content:']';
    font-style:normal;
    color:#888
}

#artwork p {
    font-weight:300;    
    font-size:14px;
}

#artwork p.note {
    font-size:11px;
    margin-top:48px;
}

#artwork .content .imagery img {
        width:100%;
 }


.desktop {
    text-align:center;
}
.desktop img {
    width:70%;
    margin:0 auto;
}
       
@media (min-width:900px) {
    #bio .content {
        flex-flow:column wrap;
        margin:0 auto;
        width:85%;
        padding-left:5%;
        padding-right:10%;
        padding-top:5vh;
        padding-bottom:5vh;

    }
    #artwork {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #artwork .content {
        
        margin:0 auto;
        width:80%;
        height:75vh;
        padding-left:5%;
        padding-right:25%;
    }
     #artwork.large .content {
        margin:0 auto;
        width:90%; 
        padding-left:5%;
        padding-right:15%;
        max-width:1600px;
    }
    
    #artwork .content .textual {
        width:30%;
        padding-right:10%;
}
 
    #artwork .content .imagery {
        width:60%;
        text-align:center;
    }

    #artwork.large .content .textual {
        width:20%;
        padding-right:10%
    }
    
    #artwork.large .content .imagery {
        width:70%;
        margin-top:24px;

    }
    #artwork .content .imagery .cd {
        width:100%;  
        max-width:800px;
    }
}
    
    
    
    

#bio .content p, #bio .content li {
    font-size:14px;
    line-height:22px;
    list-style:none;
}
    #bio .content li {
    line-height:22px;
    padding-bottom:12px;
}
    #bio .content li:last-child {
        padding-top:20px;
    }
}