/* ———————————————————————————————— Global */

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-ThinItalic.woff2') format('woff2');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-ExtraLightItalic.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Drafting* Mono';
    src: url('/fonts/drafting-mono/DraftingMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    height: 100vh;
}

.pages {
    height: calc(100vh - 170px);
    font-family: "Drafting* Mono";
    font-weight: 400;
    border-bottom-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

@media (min-width: 1200px) {

    .pages {
        border-bottom-width: 0px;
    }
}

.portfolio,
.project {
    overflow-y: scroll;
    scrollbar-color: #000 #fff;
    scrollbar-width: thin;
}

.portfolio:-webkit-scrollbar-thumb {
    border-radius: 6px;
    border: 3px solid #000;
}

footer,
header,
h1,
h2 {
    text-transform: uppercase;
    font-family: var(--font-one);
}

footer,
header {
    font-weight: 200;
}

header a {
    font-size: 3rem;
    font-weight: 200;
}

footer {
    font-size: 2.4rem;
    text-transform: capitalize;
    font-weight: 200;
}

a {
    color: #000;
}

img {
    width: 100px;
    height: 100px;
}

/* width */

::-webkit-scrollbar {
    width: 15px;
    border-radius: 0px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #fff;
    border-left: 1px solid #000;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #000;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

body.active {
    grid-template-rows: 25px 1fr 1fr 1fr 70px;
    grid-template-areas: ". . . ."
". header header ."
". aside aside ."
". footer footer ."
". . . .";
}

body {
    display: grid;
    grid-template-columns: 5px auto auto 5px;
}

@media (min-width: 1200px) {

    body {
        grid-template-columns: 20px auto 145px 20px;
    }
}

@media (min-width: 1400px) {

    body {
        grid-template-columns: 30px auto 145px 30px;
    }
}

@media (min-width: 1650px) {

    body {
        grid-template-columns: 64px auto 145px 64px;
    }
}

body {
    grid-template-rows: 25px 75px auto 45px 25px;
    grid-template-areas: ". . . ."
". header header ."
". main main ."
". main main ."
". . . .";
}

@media (min-width: 1200px) {

    body {
        grid-template-areas: ". . . ."
". header header ."
". main aside ."
". footer footer ."
". . . .";
    }
}

@media (min-width: 1400px) {

    body {
        grid-template-areas: ". . . ."
". header header ."
". main aside ."
". footer footer ."
". . . .";
    }
}

body {
    overflow: hidden;
}

header {
    grid-area: header;
}

aside {
    grid-area: aside;
    display: none;
}

@media (min-width: 1200px) {

    aside {
        display: block;
    }
}

aside.active {
    display: block;
}

main {
    grid-area: main;
}

main.active {
    display: none;
}

footer {
    grid-area: footer;
    display: none;
}

@media (min-width: 1200px) {

    footer {
        display: block;
    }
}

header::before {
    pointer-events: none;
    content: "";
    position: absolute;
    left: 0px;
    height: 75px;
    width: 100vw;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    border-top-width: 1px;
    border-bottom-width: 1px;
}

aside::before {
    pointer-events: none;
    content: "";
    display: none;
}

@media (min-width: 1200px) {

    aside::before {
        display: block;
    }
}

aside::before {
    position: absolute;
    top: 0px;
    height: 100vh;
    width: 145px;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    border-right-width: 1px;
    border-left-width: 1px;
}

@media (min-width: 1200px) {

    aside::before {
        border-left-width: 0px;
    }
}

main::before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0px;
    height: 100vh;
    width: calc(100% - 10px);
}

@media (min-width: 1200px) {

    main::before {
        width: calc(100% - 185px);
    }
}

@media (min-width: 1400px) {

    main::before {
        width: calc(100% - 205px);
    }
}

@media (min-width: 1650px) {

    main::before {
        width: calc(100% - 272px);
    }
}

main::before {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    border-left-width: 1px;
    border-right-width: 1px;
}

footer::before {
    pointer-events: none;
    content: "";
    display: none;
}

@media (min-width: 1200px) {

    footer::before {
        display: block;
    }
}

footer::before {
    position: absolute;
    left: 0px;
    height: 45px;
    width: 100vw;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    border-top-width: 1px;
    border-bottom-width: 1px;
}

/* This is all you. */

:root {
    /* ———————————————————————————————— Global */
    --font-bold: 700;
    --font-regular: 500;
    --font-light: 300;
    /* ———————————————————————————————— style 01 */
    /* ———————— font */
    --font-one: 'aileron', sans-serif;
    


    /* ———————————————————————————————— style 01 */
    /* ———————— font */
    --font-two: 'cooper-black', serif;




}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none !important;
    font-size: 10px;
}

/* @import "modules/_homepage.css";
@import "modules/_portfolio.css";
@import "modules/_project.css"; */

/* ———————————————————————————————— Pages */

.homepage {
    overflow-y: scroll;
}

@media (min-width: 1200px) {

    .homepage {
        overflow: hidden;
    }
}

.homepage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 1200px) {

    .homepage {
        grid-template-columns: repeat(9, 1fr) 150px 150px 150px;
    }
}

@media (min-width: 1400px) {

    .homepage {
        grid-template-columns: repeat(9, 1fr) 200px 200px 200px;
    }
}

@media (min-width: 1900px) {

    .homepage {
        grid-template-columns: repeat(12, 1fr);
    }
}

.homepage {
    grid-template-rows: auto auto;
}

@media (min-width: 1200px) {

    .homepage {
        grid-template-rows: auto;
    }
}

.homepage {
    -moz-column-gap: 25px;
         column-gap: 25px;
}

.photo-arthur {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .photo-arthur {
        grid-column: 9 / 13;
    }
}

@media (min-width: 1400px) {

    .photo-arthur {
        grid-column: 9 / 13;
    }
}

.photo-arthur {
    grid-row: 1 / 1;
}

@media (min-width: 1200px) {

    .photo-arthur {
        grid-row: 1 / -1;
    }
}

.photo-arthur {
    height: 600px;
}

@media (min-width: 880px) {

    .photo-arthur {
        height: 1200px;
    }
}

@media (min-width: 1200px) {

    .photo-arthur {
        height: calc(100vh - 170px);
    }
}

.photo-arthur {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    float: top;
    -o-object-position: center top;
       object-position: center top;
    padding: 25px;
    border-left-width: 0px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

@media (min-width: 1200px) {

    .photo-arthur {
        border-left-width: 1px;
    }
}

.photo-arthur {
    border-bottom-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

@media (min-width: 1200px) {

    .photo-arthur {
        border-bottom-width: 0px;
    }
}

.homepage-content {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .homepage-content {
        grid-column: 1 / 7;
    }
}

.homepage-content {
    grid-row: 2 / 2;
}

@media (min-width: 1200px) {

    .homepage-content {
        grid-row: 1 / -1;
    }
}

.homepage-content {
    align-self: flex-start;
}

@media (min-width: 1200px) {

    .homepage-content {
        align-self: center;
    }
}

.homepage-content {
    padding: 25px;
}

.homepage-content h1 {
    font-size: 3rem;
}

@media (min-width: 1400px) {

    .homepage-content h1 {
        font-size: 4rem;
    }
}

.homepage-content h1 {
    letter-spacing: 2px;
    font-weight: 800;
    line-height: 30px;
}

@media (min-width: 1200px) {

    .homepage-content h1 {
        line-height: 40px;
    }
}

.homepage-content h1 {
    padding-bottom: 15px;
}

@media (min-width: 1400px) {

    .homepage-content h1 {
        padding-bottom: 25px;
    }
}

.homepage-content h2 {
    font-size: 2rem;
}

@media (min-width: 1400px) {

    .homepage-content h2 {
        font-size: 2.4rem;
    }
}

.homepage-content h2 {
    letter-spacing: 2px;
    font-weight: 800;
    line-height: 23px;
    padding-bottom: 15px;
}

@media (min-width: 1400px) {

    .homepage-content h2 {
        padding-bottom: 25px;
    }
}

.logline,
.homepage-content p {
    padding-bottom: 15px;
}

@media (min-width: 1400px) {

    .logline,
.homepage-content p {
        padding-bottom: 25px;
    }
}

.homepage-content p,
.interest ul li,
.logline {
    font-size: 1.4rem;
}

@media (min-width: 1400px) {

    .homepage-content p,
.interest ul li,
.logline {
        font-size: 1.8rem;
    }
}

.homepage-content p,
.interest ul li,
.logline {
    font-weight: 300;
}

.button-return {
    display: block;
    padding: 25px;
    border-bottom: 1px solid #000;
    font-size: 1.4rem;
}

@media (min-width: 1200px) {

    .button-return {
        font-size: 1.8rem;
    }
}

.button-return:hover {
    background-color: #000;
    color: #fff;
}

.hero-project {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 1200px) {

    .hero-project {
        grid-template-columns: repeat(12, 1fr);
    }
}

.hero-project {
    -moz-column-gap: 25px;
         column-gap: 25px;
    padding: 25px;
    border-bottom: 1px solid #000;
}

.project-thumbnail {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .project-thumbnail {
        grid-column: 1 / 5;
    }
}

.project-thumbnail img {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .project-thumbnail img {
        grid-column: 1 / 5;
    }
}

.project-thumbnail img {
    border: 1px solid #000;
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 25px;
}

@media (min-width: 1200px) {

    .project-thumbnail img {
        margin-bottom: 0px;
    }
}

.hero-project .text-box {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .hero-project .text-box {
        grid-column: 5 / 9;
    }
}

.project-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 1200px) {

    .project-container {
        grid-template-columns: repeat(12, 1fr);
    }
}

.project-content {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .project-content {
        grid-column: 1 / 9;
    }
}

.project-content {
    border-right-width: 0px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

@media (min-width: 1200px) {

    .project-content {
        border-right-width: 1px;
    }
}

.project-sidebar {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {

    .project-sidebar {
        grid-column: 9 / 13;
    }
}

.sidebar-module {
    padding: 25px;
    border-bottom-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.sidebar-module:last-child {
    border-bottom-width: 0px;
}

@media (min-width: 1200px) {

    .sidebar-module:last-child {
        border-bottom-width: 1px;
    }
}

.sidebar-module h2,
.video-module h2,
.images-module h2 {
    font-size: 2rem;
}

@media (min-width: 1200px) {

    .sidebar-module h2,
.video-module h2,
.images-module h2 {
        font-size: 2.4rem;
    }
}

.sidebar-module h2,
.video-module h2,
.images-module h2 {
    letter-spacing: 2px;
    font-weight: 800;
    line-height: 23px;
    margin-bottom: 25px;
}

.sidebar-module p,
.sidebar-module-list li,
.video-module p,
.images-module p,
.project-content .text {
    font-size: 1.4rem;
}

@media (min-width: 1400px) {

    .sidebar-module p,
.sidebar-module-list li,
.video-module p,
.images-module p,
.project-content .text {
        font-size: 1.8rem;
    }
}

.sidebar-module p,
.sidebar-module-list li,
.video-module p,
.images-module p,
.project-content .text {
    font-weight: 300;
    line-height: 16px;
}

@media (min-width: 1400px) {

    .sidebar-module p,
.sidebar-module-list li,
.video-module p,
.images-module p,
.project-content .text {
        line-height: 20px;
    }
}

.video-module p {
    margin-bottom: 25px;
}

.sidebar-module-list li {
    list-style-position: outside !important;
    list-style: "– " !important;
    margin-left: 20px;
}

.images-module,
.video-module {
    padding: 25px;
}

.video-container {
    width: 100%;
    height: 50vh;
}

.video-container iframe html body > * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.images-module img {
    width: 100%;
    border: 1px solid #000;
    margin-top: 25px;
}

/* .video-container iframe {
    @apply w-[213px] sm:w-[426px] md:w-[319px] lg:w-[100%];
    @apply h-[120px] sm:h-[240px] md:h-[180px] lg:h-[350px] xl:h-[500px];
} */

.project-content > div:nth-child(1n + 2) {
    border-top: 1px solid #000;
}

.text p a {
    font-size: 1.4rem;
}

@media (min-width: 1400px) {

    .text p a {
        font-size: 1.8rem;
    }
}

.text p a {
    font-weight: 500;
    line-height: 16px;
}

@media (min-width: 1400px) {

    .text p a {
        line-height: 20px;
    }
}

.text p a {
    text-transform: capitalize;
    padding: 25px;
    display: block;
}

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

/* ———————————————————————————————— Modules */

/* ———————— Pages */

nav {
    display: grid;
    grid-template-columns: auto 75px;
}

@media (min-width: 1200px) {

    nav {
        grid-template-columns: auto;
    }
}

nav {
    grid-template-rows: 75px auto;
}

@media (min-width: 1200px) {

    nav {
        grid-template-rows: auto;
    }
}

nav {
    align-content: center;
    /* height: 100%; */
    height: auto;
}

@media (min-width: 1200px) {

    nav {
        height: 100%;
    }
}

nav {
    /* background-color: #fff; */

    z-index: 888;
}

.menu {
    display: none;
}

@media (min-width: 1200px) {

    .menu {
        display: grid;
        grid-template-columns: repeat(6, 95px) auto;
    }
}

.menu {

    /* grid-row: 2 / 2; */
    padding: 25px;
    padding-left: 25px;
    padding-top: 25px;
}

@media (min-width: 1200px) {

    .menu {
        padding-top: 0px;
    }
}

.menu {
    padding-bottom: 25px;
}

@media (min-width: 1200px) {

    .menu {
        padding-bottom: 0px;
    }
}

.menu {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

@media (min-width: 1200px) {

    .menu {
        background-color: transparent;
    }
}

.menu {
    z-index: 999;
}

.menu.active {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}

.menu.active::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 5px;
    width: calc(100vw - 10px);
    border: 1px solid #000;
    pointer-events: none;
}

header a {
    letter-spacing: 1px;
}

header a:hover {
    font-weight: 500;
    letter-spacing: 0px;
}

.burger-button {
    display: block;
}

@media (min-width: 1200px) {

    .burger-button {
        display: none;
    }
}

.burger-button {
    grid-column: 2 / 2;
    border-left-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    height: 75px;
}

.burger {
    display: inline-block;
}

@media (min-width: 1400px) {

    .burger {
        display: none;
    }
}

.burger {
    width: 26px;
    height: 100%;
    cursor: pointer;
    left: 50%;
    position: relative;
    transform: translate(-50%);
}

.burger span {
    width: 100%;
    height: 5px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.5s ease-in-out;
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: #000;
    transition: transform 0.5s ease-in-out;
}

.burger span::before {
    transform: translateY(-10px);
}

.burger span::after {
    transform: translateY(10px);
}

.burger.active span {
    background-color: transparent;
}

.burger.active span::before {
    transform: translateY(0px) rotateZ(45deg);
}

.burger.active span::after {
    transform: translateY(0px) rotateZ(-45deg);
}

aside img {
    display: none;
}

@media (min-width: 1200px) {

    aside img {
        display: block;
    }
}

aside img {
    width: 145px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 25px;
}

aside {
    display: none;
}

@media (min-width: 1200px) {

    aside {
        display: grid;
    }
}

aside {
    text-transform: uppercase;
    font-weight: 200;
    font-size: 20px;
}

aside ul {
    padding: 25px;
    align-items: center;
    justify-items: center;
    /* @apply row-main; */
}

aside ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.button-style:hover {
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
}

.button-style {
    width: 95px;
    height: 190px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    font-family: 'Drafting* Mono';
}

.button-style::after {
    transform: rotate(-90deg);
    position: absolute;
}

#button1::after {
    content: 'style one';
}

#button2::after {
    content: 'style two';
}

#button3::after {
    content: 'style three';
}

#button4::after {
    content: 'style four';
}

footer {
    display: none;
}

@media (min-width: 1200px) {

    footer {
        display: grid;
    }
}

footer {
    grid-template-columns: auto;
}

footer.active {
    display: grid;
    grid-template-columns: auto;
    border: 1px solid #000;
    z-index: 333;
    background-color: #fff;
}

footer ul {
    display: grid;
}

@media (min-width: 1200px) {

    footer ul {
        grid-template-columns: repeat(6, 95px) auto;
        align-content: center;
    }
}

footer ul {
    grid-gap: 25px;
    padding-left: 25px;
    padding-top: 25px;
}

@media (min-width: 1200px) {

    footer ul {
        padding-top: 0px;
    }
}

footer ul {
    padding-bottom: 25px;
}

@media (min-width: 1200px) {

    footer ul {
        padding-bottom: 0px;
    }
}

footer ul li {
    align-self: center;
}

footer ul li a {
    font-size: 20px;
    letter-spacing: 1px;
}

footer ul li a:hover {
    font-weight: 500;
    letter-spacing: 0px;
}

.project-box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 1200px) {

    .project-box {
        grid-template-columns: repeat(12, 1fr);
    }
}

.project-box {
    -moz-column-gap: 25px;
         column-gap: 25px;
    padding: 25px 25px;
    border-top: 1px solid #000;
}

.project-box:first-child {
    border-top: 0px;
}

.project-box:hover {
    color: #fff;
    background-color: #000;
}

.project-box img {
    grid-column: 1 / -1;
}

@media (min-width: 1400px) {

    .project-box img {
        grid-column: 1 / 7;
    }
}

@media (min-width: 1650px) {

    .project-box img {
        grid-column: 1 / 5;
    }
}

.project-box img {
    border: 1px solid #000;
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 25px;
}

@media (min-width: 1200px) {

    .project-box img {
        margin-bottom: 0px;
    }
}

.project-box .text-box {
    grid-column: 1 / -1;
}

@media (min-width: 1400px) {

    .project-box .text-box {
        grid-column: 7 / 13;
    }
}

@media (min-width: 1650px) {

    .project-box .text-box {
        grid-column: 5 / 9;
    }
}

.text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-box h2 {
    font-size: 2rem;
}

@media (min-width: 1400px) {

    .text-box h2 {
        font-size: 2.4rem;
    }
}

.text-box h2 {
    letter-spacing: 2px;
    font-weight: 800;
    line-height: 23px;
    margin-bottom: 25px;
}

@media (min-width: 1200px) {

    .text-box h2 {
        margin-bottom: 0px;
    }
}

.text-box p {
    font-size: 1.4rem;
}

@media (min-width: 1400px) {

    .text-box p {
        font-size: 1.8rem;
    }
}

.text-box p {
    font-weight: 300;
    line-height: 16px;
}

@media (min-width: 1400px) {

    .text-box p {
        line-height: 20px;
    }
}

/* ! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Graphik, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    padding: 20px;
    background: radial-gradient(circle, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #EE82EE);
          background-size: 1000% 1000%;
          animation: gradientAnimation 5s ease infinite;
    box-shadow: 15px 15px 0px rgba(0, 0, 0);
    border: 1px solid #000;
    text-align: center;
    font-family: comic sans ms;
    color: pink;
    
    cursor: move;
  }

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.popup-header {
    padding: 10px;
    cursor: move;
    color: pink;
  }

.popup-title {
    text-shadow: 3px 3px yellow, 6px 6px yellowgreen;
    font-size: 60px;
    font-weight: bold;
    animation: textShadowAnim 0.4s alternate infinite;

  }

.popup-close {
      float: right;
      cursor: pointer;
      font-size: 60px;
    }

.popup-content {
    
        padding: 20px;
    }

.popup-content p {
        font-size: 40px;
        animation: textShadowAnimLeft 0.4s alternate infinite;
        margin-bottom: 40px;
    }

@keyframes textShadowAnim {
    0% {
        text-shadow: 3px 3px red;
    }
    10% {
        text-shadow: 3px 3px red, 6px 6px orange;
    }
    20% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow;
    }
    30% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green;
    }
    40% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue;
    }
    50% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue, 18px 18px indigo;
    }
    60% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue, 18px 18px indigo, 21px 21px violet;
    }
    70% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue, 18px 18px indigo, 21px 21px violet, 24px 24px pink;
    }
    80% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue, 18px 18px indigo, 21px 21px violet, 24px 24px pink, 27px 27px coral;
    }
    90% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue, 18px 18px indigo, 21px 21px violet, 24px 24px pink, 27px 27px coral, 30px 30px gold;
    }
    100% {
        text-shadow: 3px 3px red, 6px 6px orange, 9px 9px yellow, 12px 12px green, 15px 15px blue, 18px 18px indigo, 21px 21px violet, 24px 24px pink, 27px 27px coral, 30px 30px gold;
    }
}

@keyframes textShadowAnimLeft {
    0% {
        text-shadow: -2px -2px red;
    }
    10% {
        text-shadow: -2px -2px red, -4px -4px orange;
    }
    20% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow;
    }
    30% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green;
    }
    40% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue;
    }
    50% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue, -12px -12px indigo;
    }
    60% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue, -12px -12px indigo, -14px -14px violet;
    }
    70% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue, -12px -12px indigo, -14px -14px violet, -16px -16px pink;
    }
    80% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue, -12px -12px indigo, -14px -14px violet, -16px -16px pink, -18px -18px coral;
    }
    90% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue, -12px -12px indigo, -14px -14px violet, -16px -16px pink, -18px -18px coral, -20px -20px gold;
    }
    100% {
        text-shadow: -2px -2px red, -4px -4px orange, -6px -6px yellow, -8px -8px green, -10px -10px blue, -12px -12px indigo, -14px -14px violet, -16px -16px pink, -18px -18px coral, -20px -20px gold;
    }
}
