@font-face {
    font-family: colorBasic;
    src: url(/color_basic.otf);
}

@font-face {
    font-family: Searfont;
    src: url(/Searfont.ttf);
}

.artgrid {
    display: grid;
    max-width: 60%;
    margin: auto;
    justify-items: center;
    grid-template-columns: auto auto auto;
    /* background-color: rgba(0, 0, 0, 0.6); */
    padding: 4px;
}

.artgrid div {
    width: 100px;
    margin: 4px;
}

.artgrid div img {
    max-width: 100px;
}

.artgrid div:hover {
    border: 3px #E9B05C;
}

.heading {
    z-index: 4;
    text-align: right;
    color:#37daea;
    font-family: colorBasic;
    font-size: 16pt;
    text-shadow: #000000 2px 2px 4px;
}

.copy {
    z-index: 4;
    text-align: left;
    color: #37daea;
    font-family: monospace;
    font-size: 16pt;
    text-shadow: #000000 2px 2px 4px;
}

.blockquote {
    position: relative;
    z-index: 4;
    text-align: left;
    color: #37daea;
    font-family: monospace;
    font-size: 16pt;
    text-shadow: #000000 2px 2px 4px;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px;
}

.leftblock {
    width: 70%;
    margin-left: auto;
    margin-right: 0;
}

#biotable {
    position: relative;
    z-index: 4;
    margin-right: auto;
    margin-left: 60%;
    margin-top: 40vw;
    border-collapse: collapse;
    width: auto;
    background-color: none;
    background: none;
}

#biotable tr {
    border: none;
    background-color: none;
    background: none;
}

#biotable td {
    border: none;
    background-color: none;
    background: none;
    padding-left: 2px;
    padding-right: 2px;
}

#bgtitle {
    z-index: 1;
    text-align: center;
    position: absolute;
    top: 100px;
    width: 100%;
    font-family: Searfont;
    color: #fdb838;
    font-size: 25vw;
    padding: 10px;
}

#clothed {
    z-index: 3;
    position: absolute;
    top: 150px;
    max-width: 80%;
    height: auto;
    transition: opacity 0.5s linear;
    opacity: 1;
}

#nude {
    z-index: 2;
    position: absolute;
    top: 150px;
    max-width: 80%;
    height: auto;
}

#clothed:hover {
    opacity: 0;
}

/* responsive layout >1000px wide */
@media screen and (min-width: 1000px) {
    .responsiveContainer {
        width: 70%;
    }
    .responsiveContainer #bgtitle {
        font-size: 15vw;
        right: 0;
    }
    .responsiveContainer #clothed {
        max-width: 30%;
    }
    .responsiveContainer #nude {
        max-width: 30%;
    }
    .responsiveContainer #biotable {
        margin-left: 60%;
        margin-top: 30vw;
    }
}