body {
    color: #010101;
    background-color: #fafcff;
}

h2{
    margin-bottom: 0.75rem;
}

.work-one-heading h1{
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.selected-work-one{
    margin-top: 7rem;
    margin-bottom: 10em;
}

.preview{
    margin-bottom: 5rem;    
    animation: slowFadeIn 4s;
}

.work-image img{
    width: 100%;
    height: auto;
    animation: slowFadeIn 4s; 
}

.work2-image img{
    width: 100%;
    height: auto;
    padding: 1rem;
    background-color: #000000;
    animation: slowFadeIn 4s; 
}

.work-showcase iframe {
    width: 100%; 
}

iframe{
    border: none;
    overflow: hidden;
}

.work-showcase figcaption{
    color: #ffffff;
    margin-bottom: 2em;
}

figcaption{
    margin-bottom: 2em;
}

.preview-details p{
    color: white;
    width: 40%;
}

.preview-details h2{
    color: white;
    margin-top: 2rem;
}

.showcase{
    background-color: #000000;
    padding-top: 10em;
    padding-bottom: 10em;
}

.white-image-background{
    background-color: #000000;
    padding-top: 10em;
    padding-bottom: 10em;
}

.live-web h2{
    color: white;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.figure-one img{
    margin: 0 auto 2rem;
    padding: 0;
}

.katana img{
    height: 100%;
}

.selected-work-one span{
    font-weight: 600;
}

.work-grid-container{
    display: flex;
    justify-content: space-between;
    gap: 30rem;
}

.project-website{
    display: flex;
    align-self: flex-end;
}

/* .project-website a{
    margin: 1rem;
} */

.work-selection-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 5rem;
    border-top: 1px solid #888;

}

.content-container{
    display: flex;
    justify-content: space-between;
    gap: 30rem;
}

.project-thought{
    width: 55%;
    padding-bottom: 10rem;
}

.project-content a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    font-style: italic;
    font-weight: 600;
    color: #555;
    position: relative; 
    display: inline-block; 
}

/* Chatgpt prompt: how to animate the bottom anchor line from left to right in css? */
.project-content a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.1rem; 
    background-color: #808080; 
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease-in-out;
}

.project-content a:hover::after{
    transform: scaleX(1);
}

.project-content a:focus {
    background-color: #010101;
    color: #ffffff;
}


/* .mobile-image-container img{
    /* margin-bottom: 5rem; */
    /* box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.5); */
/* }  */


figcaption {
    color: #555; 
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: italic; 
    padding-top: 0.5em; 
}

.heading {
    animation: slowFadeIn 3s;
    /* Set to white by default */
    background-color: white; 
    /* Add box-shadow by default */
    box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.2); 
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: fixed; 
    width: 100%; 
    z-index: 10; 

}

/* Only when JavaScript is enabled and user scrolls, revert to transparent */
.heading.scrolled {
    background-color: transparent;
    box-shadow: 0 0 0 transparent; 
}

.content-container{
    margin-bottom: 20em;
}

.project-detail{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
}

.project-detail h3{
    margin-bottom: 1rem;
}

.detail-role{
    grid-area: 1 / 1 / 2 / 2;
}

.detail-time-spent{
    grid-area: 1 / 3 / 2 / 4;
}

.detail-team{
    grid-area: 1 / 5 / 2 / 6;
}

.detail-mentor{
    grid-area: 1 / 6 / 2 / 6;
}

