/* work.html */
.work-container {
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    row-gap: 45px;
    padding-right: 30px;
    padding-left: 30px
}

.work-container > *:nth-child(1) {
    grid-column: 2;
}

.work-container > *:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
}

.work-button {
    border-radius: 8dvh;
    border: 1px dotted black;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: -0.5px;
    font-size: 11px;
    background: #898989;
    color: #ececec;
}

.work-button:hover {
    background:	#000000;
    color: #ececec;
    cursor: pointer;
}

.work-thumbnails {
    width: 400px;
    margin: -5px 0px 15px 0px;
}

.work-images {
    width: 65%;
    height: auto;
    margin: 10px 0px 20px 0px
}

.daily-comic-images {
    width: 40%;
    height: auto;
    margin: 10px 0px 20px 0px
}

.work-description {
    padding: 20px 27% 30px 27%;
    line-height: 1.3em;
}
 
pre .ball {
    color: white;
}

/* Work selections */
#work-title {
    font-size: 14px;
    display: flex;
    justify-content: center;
}

a.w-link:hover {
    /* background-color: #056f04; */
    text-decoration: underline;
}

/* Reference for bottom centering text */
.credit {
    position: relative;
    bottom: 1%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
}

.credit a:hover {
    text-decoration: underline;
}


/* Carousel for comics.html */
.comic-image {
    width: 500px;
}

ul {
    width: 560px;
    height: 560px;
    padding: 5px;
    display: flex;
    gap: 4vw;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 auto;
}

li {
    list-style-type: none;
    padding: 20px;
    scroll-snap-align: center;
    flex: 0 0 100%;
}


@media (max-width: 800px) {
    .work-description {
        padding: 20px 15% 30px 15%;
    }

    .work-images {
        width: 75%;
    }

    .work-thumbnails {
        width: 60%;
        display: block;
        margin: auto;
        margin-bottom: 15px;
    }

    .daily-comic-images {
        width: 75%;
    }

    .work-container {
        grid-template-columns: 1fr;
    }

    .bookmark-mobile.ball a {
        color: white;
    }

    .credit {
        position: relative;
        margin-bottom: 40px;
    }

    ul {
        width: 90%;
        height: auto;
    }

    .comic-image {
        width: 100%;
    }
}

