body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    /*background: #FBFBFD;*/
    background: #FFF;
    width: 100vw;
    height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1D1D1F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

nav {
    display: flex;
    position: fixed;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    z-index: 1;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.10);   
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.10);
}

.logo {
    width: 32px;
}

.key-cmd {
    cursor: pointer;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    padding: 6px 4px;
    margin-right: 0.3rem;
    background: #FFFFFF;
}

.key-cmd:hover {
    filter: brightness(95%);
}

.press, .key-cmd {
    font-size: 0.8125rem;
    line-height: 140%;
    letter-spacing: 0.03rem;
    color: #929292;
}

.initials {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    font-size: 0.9375rem;
    color: #FFFFEB;
    height: 32px;
    width: 32px;
}

.message-me {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 8px;
    background: #0A84FF;
    border-radius: 6px;
    border: 1px solid #0A84FF;
    color: #FFFFEB;
    font-size: 0.8125rem;
    letter-spacing: 0.03rem;
    line-height: 140%;
    text-decoration: none;
}

.message-me:hover {
    filter: brightness(90%);
  }

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    column-gap: 20px;
}


.nav-left {
    margin-left: 4%;
}

.nav-right {
    margin-right: 4%;
}

main {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    padding: 0 4%;
}

.hero {
    display: flex;
    row-gap: 1rem;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
}

.joice-memoji {
    padding-top: 120px;
    display:flex;
    z-index: -1;
    width: 30%;
    max-width: 1000px;
    box-shadow: 0px 0px 80px 0 #ffffff;
    -webkit-box-shadow: 0px 0px 80px 0px #ffffff;
    -moz-box-shadow: 0px 0px 80px 0px #ffffff;
}

h1 {
    font-weight: 600;
    font-size: 3.5rem;
}

.gradient-text {
    background: #E495C2;
    background: radial-gradient(ellipse farthest-corner at top right, #E495C2 0%, #909EF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.hero-copy {
    font-size: 1.3125rem;
    line-height: 123%;
}

.work-history {
    display: flex;
    flex-direction: column;
    row-gap: .35rem;
}

h2 {
    font-size: 1.25rem;
    letter-spacing: -0.011em;
}

p {
    color: #818181;
    font-size: 0.9375rem;
}

.work {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
    row-gap: 3rem;
    column-gap: 3rem;
    padding: 1rem 0 4rem 0;
}

.work-img {
    width: 100%;
    border-radius: 8px;
    cursor: ne-resize;
}

footer {
    display: flex;
    width: 100vw;
    background: #F5F5F7;
    position: fixed;
    bottom: 0;
    padding: 2px 0;
}

/* SPECY WORK PAGES CSS*/

.work-body {
   /* background-color: #FBFBFD; */
    background-color: #f6f6f9;
}

.work-body > main {
    padding: 3% 8% 8% 12%;
    row-gap: 8rem;
}

.work-hero {
    display: flex;
    row-gap: 1rem;
    flex-direction: column;
    align-items: center;
    margin-top: 11%;
    text-align: center;
}

.work-hero > h1 {
    font-size: 2rem;
}

.work-hero > .apple-tv-card-container {
    width: 50%;
}

.work-hero > .apple-tv-card-container > .apple-tv-card {
}

.work-list {
    display: flex;
    flex-direction: column;
    row-gap: 12rem;
}

.work-item {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.work-item > audio, canvas, video, img {
    border-radius: 2%;
}

.half {
    width: 40%;
}

.work-description {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.work-description > h2 {
    font-size: 1.8rem;
}

.work-description > p {
    color: #656565;
    font-size: 1.05rem;
    line-height: 140%;
}

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

/* RESPONSIVE SIZES */

@media screen and (max-width: 940px) {
    .work-hero > .apple-tv-card-container {
        width: 100%;
    }
    .work-body > main {
        row-gap: 4rem;
        padding: 10% 8% 8% 12%;
    }
    .work-description > h2 {
        font-size: 1.5rem;
    }
    
}
