footer {
    box-sizing: border-box;
    margin: 30px 0 20px 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: var(--secondary-text-color);
    align-items: flex-end;
    
    white-space: nowrap;
    flex-wrap: wrap;
    line-height: 1.6rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    margin-right: 20px;
}

@media screen and (max-width: 700px) {
    footer {
        padding-left: 20px;
        padding-right: 20px;
        
        margin: 30px 0 10px 0;
    }
}

@media screen and (max-width: 374px) {
    .footer-links a {
        font-size: 0.9rem;
    }
}

.footer-copyright {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.7;
    display: flex;
    align-items: flex-end;
    line-height: 1.4rem;
}
main.gallery-page {
    align-items: center;
}

main.gallery-page h1 {
    font-size: 2.3rem;
    font-weight: 400;
    color: #0A9396;
    text-transform: uppercase;
}

main.gallery-page p {
    font-size: 1.3rem;
    font-weight: 200;
}

main.gallery-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
}

section.videos-section {
    align-self: stretch;
}

section.drawings-section {
    align-self: stretch;
}

.videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.drawings {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.drawings img {
    width: calc((100% - 20px) / 2);
}

.videos video {
    width: calc((100% - 20px) / 2);
    aspect-ratio: 1920 / 1440;
}

main.gallery-page section {
    padding-bottom: 30px;
}

@media screen and (max-width: 1200px) {
    main.gallery-page h1 {
        font-size: 2.1rem;
    }
    
    main.gallery-page h2 {
        font-size: 1.6rem;
    }

    
    main.gallery-page p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}

main.gallery-page p.youtube-hint {
    font-size: 1.3rem;
}

.youtube-hint a {
    color: #FCB93C;
    font-weight: 300;
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    .drawings img {
        width: 100%;
    }

    .videos video {
        width: 100%;
    }
    
    main.gallery-page h1 {
        font-size: 1.9rem;
    }
    
    main.gallery-page h2 {
        font-size: 1.4rem;
    }

    
    main.gallery-page p {
        font-size: 1rem;
    }
    
    main.gallery-page p.youtube-hint {
        font-size: 1.1rem;
    }
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    
    display: flex;
    justify-content: center;
    z-index: 100;
    transition: background 0.5s;
}

header nav {
    max-width: 1080px;
    width: 100%;
}

@media screen and (max-width: 1120px) {
    header nav {
        box-sizing: border-box;
        padding: 0 20px 0 20px;
    }
}

.site-navigation-links {
    display: flex;
    justify-content: space-between;
}

.trailing-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

a.page-link {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.1rem;
}

ul.site-navigation-links {
    list-style-type: none;
    padding-inline-start: 0;
    margin: 0;
    padding: 16px 0 16px 0;
}

ul.site-navigation-links li {
    display: flex;
    align-items: center;
}

.site-navigation-link {
    color: var(--header-text-color);
    font-weight: 400;
}

.site-navigation-link.home {
    letter-spacing: 0.2em;
    font-weight: 300;
    font-size: 1.3rem;
}

.coming-soon {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 1.1rem;
    padding: 8px 20px 8px 20px;
    
    background: #13223A;
    border-radius: 20px;
    
    text-transform: uppercase;
}

.get-now {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 20px 8px 20px;
    
    background: #13223A;
    border-radius: 20px;
    
    text-transform: uppercase;
}

.site-navigation-link.home .label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.site-navigation-link.home .icon {
    position: absolute;
    top: 4px;
    margin-left: -20px;
}

.site-navigation-link.home .label span {
    padding-left: 50px;
}

.site-navigation-link.home .label svg {
    height: 60px;
}

a.page-link.valentines.narrow {
    display: none;
}

a.page-link.valentines {
    padding: 10px 20px 10px 20px;
    background-color: #9B225D;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

a.page-link.valentines .happening-now {
    font-size: 0.7rem;
    font-weight: 200;
}

a.page-link.valentines.selected {
    display: none;
}

a.page-link.valentines.narrow {
    display: none;
}

@media screen and (max-width: 700px) {
    .site-navigation-link {
        font-weight: 400;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
    
    .trailing-links {
        gap: 12px;
    }
    
    a.page-link {
        font-weight: 300;
        font-size: 1rem;
    }
    
    a.page-link.valentines.narrow {
        display: flex;
        border-radius: 0;
    }
    
    .home-page a.page-link.valentines.narrow {
        margin-top: -20px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .gallery-page a.page-link.valentines.narrow {
        width: calc(100% - 40px);
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    header a.page-link.valentines {
        display: none;
    }
}

.site-navigation-link.selected {
    border-bottom: solid 2px var(--header-text-color);
}

.page-link.selected {
    border-bottom: solid 2px var(--header-text-color);
}

.page-link {
    border-bottom: solid 2px rgba(255,255,255,0);
    transition : border 500ms ease-out;
}

a.site-navigation-link {
    text-decoration: none;
}

header.inverted {
    background-color: var(--header-inverted-background);
}

@media screen and (max-width: 400px) {
    .get-now {
        font-size: 0.9rem;
        text-align: center;
        padding: 8px 12px 8px 12px;
    }
    
    a.page-link {
        font-size: 0.9rem;
    }
    
    .site-navigation-link.home {
        letter-spacing: 0.2em;
        font-weight: 300;
        font-size: 1rem;
    }
    
    .site-navigation-link.home .label svg {
        height: 50px;
    }
    
    .site-navigation-link.home .label span {
        padding-left: 40px;
    }
}
.home-page h1 {
    font-size: 3.9rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.1em;
    margin: 0;
}

.home-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.8rem;
    padding: 0px 0 30px 0;
    color: white;
    margin: 0;
}

.home-page .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 40px 30px 30px 30px;
}

.home-page .header p {
    font-size: 1.3rem;
    font-weight: 300;
    
    margin: 0;
    padding: 10px 0px 20px 0px;
    
    text-align: center;
}

.home-page .header .image {
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    
    justify-content: center;
    align-items: center;
    
    max-width: 1080px;
    margin: 0px 0 10px 0;
}

.home-page .header .image .preview-container {
    width: 90vw;
    max-width: 900px;
    animation: fadeIn 5s;
}

.home-page .header p.description {
    font-weight: 200;
    font-size: 1.2rem;
    line-height: 2.6rem;
    text-align: center;
    max-width: 1000px;
    
    padding: 30px 0 30px 0;
    margin: 0;
}

.home-page .feature-section {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    align-items: center;
}

.home-page .section {
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 60px 0px 60px 0px;
}

.home-page .brush-container {
    background: #0F1622;
}

.home-page .symmetry-container {
    background: #031215;
}

.home-page .reference-image-container {
    background: #160B1A;
}

.home-page .palettes-container {
    background: #0D0F1E;
}

.home-page .export-container {
    background: #0D161E;
}

.home-page .feature-section img {
    width: 90vw;
    max-width: 580px;
}

.home-page .feature-section p {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 2.5rem;
    margin: 0;
}

.home-page .extra {
    display: flex;
    justify-content: center;
}

.home-page .extra p {
    font-weight: 200;
    font-size: 1.3rem;
    line-height: 2.5rem;
    text-align: center;
    
    max-width: 880px;
    justify-item: center;
    
    padding: 40px 0 40px 0;
}

.home-page .extra.undo p {
    padding: 0px 0 40px 0;
}

.example-art-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

.home-page .example-art-section h2 {
    text-align: center;
    padding: 60px 20px 40px 20px;
    font-size: 1.6rem;
    font-weight: 300;
    text-transform: uppercase;
}

.example-art {
    padding: 0px 20px 40px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1540px;
}

.example-art-section img {
    max-width: 360px;
}

@media screen and (max-width: 1200px) {
    .home-page .feature-section {
        gap: 40px;
    }
    
    .home-page .section p {
        padding: 0px 10px 0px 10px;
        font-size: 1.1rem;
        line-height: 2.2rem;
    }
    
    .home-page h2 {
        font-size: 1.6rem;
        padding: 0px 10px 20px 10px;
    }
    
    .home-page .example-art-section h2 {
        font-size: 1.9rem;
        padding: 50px 30px 30px 30px;
    }
}

.download {
    padding: 0px 0 0px 0;
}

.home-page .header p.gallery-hint {
    margin: 0;
    padding: 0 0 10px 0;
    font-weight: 200;
    font-size: 1.3rem;
}

.home-page .header p.gallery-hint a {
    color: #FCB93C;
    text-decoration: none;
    font-weight: 300;
}

.gallery-link {
    color: #FCB93C;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.social-media {
    padding: 30px 0 10px 0;
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #B8B8B8;
    text-align: center;
}

.social-media-links {
    display: flex;
    gap: 46px;
    justify-content: center;
    padding: 24px 0 0 0;
}

.social-media svg {
    fill: #FCB93C;
    width: 34px;
    height: 34px;
}

@media screen and (max-width: 900px) {
    .home-page .feature-section {
        flex-direction: column;
        padding: 10px 20px;
        gap: 20px;
    }
    
    .home-page .feature-section p {
        text-align: center;
    }
    
    .home-page h2 {
        padding: 8px 10px 10px 10px;
        text-align: center;
    }
    
    .social-media {
        padding: 30px 0 10px 0;
        font-size: 1.1rem;
    }
    
    .social-media-links {
        gap: 40px;
    }

    .social-media svg {
        fill: #FCB93C;
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 700px) {
    .home-page .header {
        padding: 30px 20px 30px 20px;
    }
    
    .home-page h1 {
        font-size: 2.4rem;
    }
    
    .home-page h2 {
        font-size: 1.5rem;
        
        line-height: 2.5rem;
        padding: 10px 10px 20px 10px;
    }
    
    .example-art-section {
        padding-bottom: 30px;
    }
    
    .example-art {
        padding: 0px 20px 20px 20px;
    }
    
    .gallery-link {
        font-size: 1rem;
    }
    
    .home-page .example-art-section h2 {
        font-size: 1.4rem;
        padding: 40px 30px 30px 30px;
    }
    
    .home-page .header p {
        font-size: 0.9rem;
    }
    
    .home-page .header p.description {
        font-size: 1rem;
        line-height: 2rem;
    }
    
    .home-page .header p.gallery-hint {
        font-size: 1rem;
        line-height: 1.6rem;
    }
    
    .home-page .section {
        padding: 30px 10px 30px 10px;
    }
    
    .home-page .feature-section p {
        font-size: 1rem;
    }
    
    .home-page .extra p {
        font-size: 1rem;
    }
    
    .social-media {
        padding: 20px 0 10px 0;
        font-size: 0.9rem;
    }

    .social-media-links {
        gap: 30px;
        padding: 20px 0 0 0;
    }

    .social-media svg {
        width: 24px;
        height: 24px;
    }
}



.ipadframe {
    position: absolute;
}

.previewgif {
    width: 87.4%;
    padding: 6.3%;
    height: calc( (min(900px, 90vw) * 0.874 / 800) * 600);
}
.presskit-page .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 40px 30px 30px 30px;
}

.presskit-page .header h1 {
    font-size: 2.6rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.1em;
    margin: 0;
}

.presskit-page .header p {
    font-size: 1.2rem;
    font-weight: 300;
    
    margin: 0;
    padding: 10px 0px 40px 0px;
    
    text-align: center;
    
    line-height: 1.7rem;
}

.presskit-page .download-link {
    text-decoration: none;
    color: var(--header-text-color);
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 28px;
    background: #13223A;
    text-transform: uppercase;
}

.presskit-page .header .image {
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    
    justify-content: center;
    align-items: center;
    
    max-width: 1080px;
    margin: 40px 0 10px 0;
}

.presskit-page .header .image img {
    width: 90vw;
    max-width: 600px;
    height: calc( (min(600px, 90vw) / 800) * 593);
}

.presskit-page .section {
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 30px 0px;
}

.presskit-page .section h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.presskit-page .info-container.section {
    background: #0F1622;
    text-align: center;
    padding: 10px 0px 40px 0;
}

.presskit-page .section p {
    max-width: 650px;
    line-height: 1.7rem;
}

.presskit-page .info-container.section h3 {
    font-size: 1rem;
    margin: 0px;
    padding: 30px 0 0 0;
    font-weight: 500;
    text-transform: uppercase;
}

.presskit-page .info-container.section p {
    margin: 0;
    padding: 6px 0 6px 0;
    font-size: 1.2rem;
    font-weight: 200;
}

.presskit-page .info-container.section p.note {
    font-size: 1.1rem;
}

.presskit-page .info-container a {
    color: var(--header-text-color);
    font-weight: 400;
    text-decoration: none;
}

.presskit-page .description-container {
    text-align: left;
}

.presskit-page .description-container h4 {
    margin-block-start: 1.9em;
    margin-block-end: 0.5em;
    font-weight: 600;
}

.presskit-page .description-container .inner-container p:last-child {
    margin-block-start: 2.5em;
}

.presskit-page .about-container {
    text-align: left;
    background: #031215;
}

.presskit-page .about-container a {
    color: yellow;
    text-decoration: none;
    font-weight: 400;
}

.presskit-page .tec-container ul li {
    text-align: left;
}

.presskit-page .release-notes-container ul li {
    text-align: left;
}


.presskit-page .release-notes-container {
    background: #0F1622;
    text-align: left;
}


.presskit-page .release-notes-container ul {
    max-width: 630px;
    padding-left: 20px;
    line-height: 1.7rem;
}

.presskit-page .example-art-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.presskit-page .download-section {
    text-align: center;
    padding-bottom: 32px;
}

.presskit-page .download-section p {
    font-size: 0.9rem;
    font-weight: 200;
    
    padding: 10px 0px 40px 0px;
    
    text-align: center;
    
    line-height: 1.7rem;
    color: var(--secondary-text-color);
    max-width: 420px;
}
html {
    font-size: 1em;
    min-height: 100%;
}

body, html {
    overflow-x: hidden;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-wrap: break-word;
}

:root {
    --body-text-color: white;
    --background-color: #000A19;
    
    --secondary-text-color: #B8B8B8;
    --tertiary-text-color: #444444;
    
    --header-text-color: #EE9B00;
    --header-inverted-background: #13223A;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    min-height: 100vh;
    
    color: var(--body-text-color);
    background-color: var(--background-color);
    
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex-grow: 1;
}

main {
    margin-top: 70px;
    width: 100vw;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex-grow: 1;
}

.inner-container {
    max-width: 1080px;
}

.not-found-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-grow: 1;
}

.not-found-page h1 {
    color: var(--secondary-text-color);
    font-weight: 300;
}

.not-found-page h2 {
    color: var(--secondary-text-color);
    font-weight: 300;
}

@media screen and (max-width: 1120px) {
    .inner-container {
        box-sizing: border-box;
        padding: 0 20px 0 20px;
    }
}

.testimonials {
    padding: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    width: 96vw;
    align-items: stretch;
    flex-wrap: wrap;
}

.testimonials::-webkit-scrollbar {
  display: none;
}


.testimonials .testimonial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    position: relative;
    text-align: left;
    background: #0F1622;
    flex: 1 1 0px;
    min-width: min(90vw, 460px);
    max-width: min(90vw, 460px);
    border-radius: 16px;
}

.testimonial .testimonial-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
}

.testimonial .testimonial-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonial .testimonial-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
}

.testimonial .testimonial-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.testimonials .testimonial p {
    text-align: left;
}

.testimonial .testimonial-header p {
    font-size: 0.8rem;
    padding-bottom: 0.2rem;
    padding-top: 0.1rem;
    opacity: 0.8;
}

.testimonial .testimonial-header .rating {
    display: flex;
    justify-content: flex-end;
}

.testimonial .testimonial-header .rating .star {
    color: gold;
}

.testimonial p.testimonial-text {
    margin-top: 10px;
    font-weight: 200;
    font-size: 1.1rem;
    padding-bottom: 4px;
   
}
.testimonial .read-more {
    align-self: start;
    text-decoration: none;
    color: #FCB93C;
}


.testimonial-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-grow:1;
    align-items: flex-end;
    flex-direction: row;
}

.testimonial .testimonial-footer p {
    font-size: 0.8rem;
    color: #777;
    padding: 8px 0px 0px 0px;
}


.testimonial-sheet {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
}

.testimonial-sheet:target {
    visibility: visible;
    opacity: 1;
}

.testimonial-sheet .testimonial {
    max-width: 500px;
    margin-top: 60px;
    width: 90vw;
    margin: auto;
    top: 60px;
    overflow-y: auto;
    max-height: 80vh;
}

.testimonial-sheet .testimonial .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
main.valentines-page {
    align-items: center;
}


main.valentines-page h1 {
    font-size: 2.3rem;
    font-weight: 400;
    color: #D2508F;
    text-align: center;
}

main.valentines-page p.subheader {
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    margin: 0;
    padding: 10px 0 10px 0;
}

main.valentines-page p {
    font-size: 1.2rem;
    font-weight: 200;
    text-align: center;
    margin: 0;
    padding: 10px 0 30px 0;
    max-width: 880px;
    line-height: 1.8rem;
}

main.valentines-page .videos-section {
    padding: 30px 0px 30px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main.valentines-page .videos-section p {
    font-size: 1.1rem;
    padding: 20px 0 10px 0;
}

main.valentines-page .videos {
    gap: 30px;
}

main.valentines-page .videos video {
    width: calc((100% - 30px) / 2);
    max-width: 500px;
    aspect-ratio: 1920 / 1300;
}

a.event-link {
    padding: 14px 26px 14px 26px;
    background-color: #9B225D;
    border-radius: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

@media screen and (max-width: 700px) {
    main.valentines-page h1 {
        font-size: 2rem;
    }
    
    main.valentines-page p.subheader {
        font-size: 1.2rem;
    }
    
    main.valentines-page p {
        font-size: 1.1rem;
    }
    
    main.valentines-page .videos-section p {
        font-size: 1rem;
        padding: 20px 0 10px 0;
    }
    
    a.event-link {
        font-size: 1rem;
        gap: 8px;
        padding: 14px 18px 14px 18px;
    }
    
    main.valentines-page .videos video {
        width: calc(100% - 20px);
    }
    
    main.valentines-page .videos {
        gap: 20px;
    }
}
