/**
 Reset
 */
/*! minireset.css v0.0.7 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select {
  margin: 0;
}
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/**
 Variables
 */
:root {

    --color-white:      #F8F8F8;
    --color-black:      #111111;

    --font-content: 'Lora', sans-serif;
    --font-title:   'Roman Antique', sans-serif;
    --noise-texture: url('../images/noise-transparent.png');
    --gif-texture: url('../images/vhs.gif');

}
@font-face {
    font-family:"Roman Antique";
    src: url("../fonts/roman-antique/roman-antique.woff2") format("woff2"),
         url("../fonts/roman-antique/roman-antique.woff") format("woff");
    font-style:normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family:"Lora";
    src: url("../fonts/lora/lora-regular.woff2") format("woff2"),
         url("../fonts/lora/lora-regular.woff") format("woff");
    font-style:normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family:"Lora";
    src: url("../fonts/lora/lora-semibold.woff2") format("woff2"),
    url("../fonts/lora/lora-semibold.woff") format("woff");
    font-style:normal;
    font-weight: 600;
    font-display: swap;
}
/*
    Not included in minireset.css but stiff useful
 */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Lora', sans-serif;
    font-family: var(--font-content);
    cursor: none;
}
h1, h2, h3, h4, h5, h6, .site-name {
    font-family: 'Roman Antique', sans-serif;
    font-family: var(--font-title);
}
/**
 Content
 */
body {
    background: #111111;
    background: var(--color-black);
    color:      #F8F8F8;
    color:      var(--color-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh

}
body.admin-bar {
        min-height: calc(100vh - 32px);
    }
body .menu-mobile {
        background: #252525;
        bottom: 0;
        color: #858585;
        height: 100%;
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 99;
        right: -100vw;
        transition: .5s;
        transform: translate3d(0,0,0);
        align-content: center
    }
body .menu-mobile.active {
            transform: translate3d(-100vw,0,0);
        }
body .menu-mobile ul {
            display: flex;
            flex-direction: column;
            grid-gap: 2rem;
            gap: 2rem;
            list-style: none;
            padding: 0;
        }
body .menu-mobile ul li {
                text-align: center;
                font-size: 1.5rem;
            }
body .menu-mobile .menu-mobile-toggle {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            translate: -50% 0;
        }
body .menu-mobile .menu-mobile-toggle img {
                width: 30px;
                height: 30px;
                vertical-align: middle;
            }
body main {
        position: relative;
        width: 80vw;
        margin: 0 auto;
        z-index: 2;
        transform: translate3d(0,0,0);
        transition: .5s
    }
@media only screen and (max-width: 800px) {

    body main {
            width: 90vw
    }
        }
@media only screen and (min-width: 1440px) {

    body main {
            width: 60vw
    }
        }
body main.active {
            transform: translate3d(-100vw,0,0);
        }
body main #backdrop-filter {
            margin-top: 3.5rem;
            background: rgba(0, 0, 0, 0.1);
            box-shadow: 0 .5rem 2rem .25rem rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(3rem);
            -webkit-backdrop-filter: blur(1rem);
            height: .5rem;
            width: 100%;
        }
body main #content {
            padding: 5rem 0;
        }
body main #content h1 {
                margin-bottom: 1rem;
            }
body main #content p {
                margin-bottom: 1rem;
            }
body main #content p a {
                    padding: 3px 5px;
                }
body main #content ul {
                margin-bottom: 1rem;
                padding-left: 1.5rem;
                list-style-type: disc;
            }
body main #content ul li {
                    margin-bottom: .25rem;
                }
body #bg {
        position: fixed;
        top: -50%;
        left: -50%;
        right: -50%;
        bottom: -50%;
        width: 200%;
        height: 200vh;
        background: transparent url('../images/noise-transparent.png') repeat 0 0;
        animation: bg-animation .2s infinite;
        opacity: .9;
        visibility: visible;
    }
body #halo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        overflow: hidden;
    }
body #halo #blur {
            height: 100%;
            width: 100%;
            position: absolute;
            z-index: -1;
            backdrop-filter: blur(200px);
        }
body #halo #blob {
            height: 250px;
            aspect-ratio: 1;
            position: absolute;
            left: 50%;
            top: 50%;
            translate: -50% -50%;
            border-radius: 500px;
            background: linear-gradient(to right, aquamarine, mediumpurple);
            animation: blobRotate 20s infinite;
            z-index: -2;
        }
body .cursor__ball {
        position: fixed;
        pointer-events: none;
        left: 0;
        top: 0;
        mix-blend-mode: difference;
        z-index: 9999;
        border-radius: 100%;
        transform: translate(-50%, -50%);
    }
body .cursor__ball circle {
            fill: #F8F8F8;
            fill: var(--color-white);
        }
body h1 {
        font-size: 3rem;
    }
body h2 {
        font-size: 1.5rem;
    }
body p {
        font-size: 1rem;
        line-height: 1.5;
    }
a:not([role="menuitem"]):not(.social):not(.no-hover) {
    color: #F8F8F8;
    color: var(--color-white);
    text-decoration: none;
    padding: 3px 15px;
    box-shadow: inset 0 0 0 0 #F8F8F8;
    box-shadow: inset 0 0 0 0 var(--color-white);
    display: inline-block;
    position: relative;
    transition: color .3s ease
}
a:not([role="menuitem"]):not(.social):not(.no-hover)::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        bottom: -2px;
        left: 0;
        background-color: #F8F8F8;
        background-color: var(--color-white);
        transition: .3s ease;
        z-index: -1;
        transform: skew(-20deg);
    }
a:not([role="menuitem"]):not(.social):not(.no-hover):hover {
        box-shadow: inset 100% 0 0 0 #F8F8F8;
        box-shadow: inset 100% 0 0 0 var(--color-white);
        color: #111111;
        color: var(--color-black)
    }
a:not([role="menuitem"]):not(.social):not(.no-hover):hover::before {
            width: 100%;
        }
#footer-infos {
    position: fixed;
    bottom: 0;
    right: 0;
    color: #F8F8F8;
    color: var(--color-white);
    display: flex;
    align-items: center;
}
#footer-infos p {
        font-size: .8rem;
    }
#footer-infos .socials {
        display: flex;
        grid-gap: 1rem;
        gap: 1rem;
        padding: 1rem;
    }
#footer-infos .socials .social img {
                width: 24px;
                height: 24px;
            }
@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}
@keyframes blobRotate {
    from {
        rotate: 0deg;
    }
    50% {
        scale: 1 1.5;
    }
    to {
        rotate: 360deg;
    }
}
@media screen and (max-width: 1024px) {

    * {
        cursor: default;
    }
        body #halo,
        body .cursor__ball {
            display: none;
        }

    #footer-infos {
        position: fixed;
        bottom: 0;
        right: 0;
        background: #111111;
        background: var(--color-black);
        z-index: 3
    }

        #footer-infos::before {
            content: '';
            position: absolute;
            width: 0; height: 0;
            border-style: solid;
            border-width: 0 0 60px 15vw;
            border-color: transparent transparent #111111 transparent;
            border-color: transparent transparent var(--color-black) transparent;
            transform: rotate(0deg);
            right: 100%;
        }
}
#top-bar {
    padding: 1.5rem 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
#top-bar .site-name {
        font-size: 1.5rem;
        padding-top: .75rem;
        margin-left: -15px;
    }
#top-bar nav.menu-desktop {
        margin-left: auto;
    }
#top-bar nav.menu-desktop ul {
            display: flex;
            grid-gap: 1rem;
            gap: 1rem;
            list-style: none;
            padding: 0;
        }
#top-bar .menu-mobile-toggle {
        display: none;
    }
#top-bar .menu-mobile-toggle img {
            width: 20px;
            height: 20px;
            vertical-align: middle;
        }
@media screen and (max-width: 1024px) {

    #top-bar {
        justify-content: space-between;
    }

    nav.menu-desktop {
        display: none;
    }

    #top-bar .menu-mobile-toggle {
        display: block;
    }
}
.home main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        text-align: center;
    }
.home.admin-bar main {
            min-height: calc(100vh - 32px);
        }
.home nav {

        margin-top: 2rem;
    }
.home nav ul {
            display: flex;
            grid-gap: 1rem;
            gap: 1rem;
            list-style: none;
            padding: 0;
        }
.single-project #content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        gap: 2rem
    }
@media only screen and (max-width: 1024px) {

    .single-project #content {
            grid-template-columns: 1fr
    }
        }
.single-project #content h1 {
            grid-column: 1 / -1;
        }
.single-project #content p {
            margin-bottom: 1rem;
        }
.single-project #content h2 {
            grid-column: 1 / -1;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
.single-project #content #project-releases {
            display: grid;
            grid-column: 1 / -1;
            grid-template-columns: repeat(3, 1fr)
        }
@media only screen and (max-width: 1024px) {

        .single-project #content #project-releases {
                grid-template-columns: repeat(2, 1fr)
        }
            }
@media only screen and (min-width: 1440px) {

        .single-project #content #project-releases {
                grid-template-columns: repeat(4, 1fr)
        }
            }
.single-project #content #project-releases .project-release {
                text-align: center;
            }
.single-project #content #project-releases a {
                display: inline-block;
                text-align: center;
                width: 100%
            }
.single-project #content #project-releases a.project-release-link {
                    width: auto;
                    margin: 0 auto;
                    padding-top: .5rem
                }
.single-project #content #project-releases a picture {
                    margin-bottom: .5rem;
                    position: relative
                }
.single-project #content #project-releases a picture:before {
                        content: "";
                        display: flex;
                        position: absolute;
                        background-image: url('../images/noise-transparent.png');
                        background-image: var(--noise-texture);
                        background-repeat: repeat;
                        height: 100%;
                        width: 100%;
                        mix-blend-mode: overlay;
                        background-size: cover;
                        pointer-events: none;
                        z-index: 3;
                        top: 0;
                        left: 0;
                    }
.single-project #content #project-releases a picture:hover:after {
                        content: "";
                        display: flex;
                        position: absolute;
                        background-image: url('../images/vhs.gif');
                        background-image: var(--gif-texture);
                        background-repeat: repeat;
                        height: 100%;
                        width: 100%;
                        translate: 0 0;
                        background-position-y: -20px;
                        background-size: cover;
                        mix-blend-mode: screen;
                        pointer-events: none;
                        opacity: 64%;
                        z-index: 3;
                        top: 0;
                        left: 0;
                    }
.single-project #content #project-releases a picture,
                .single-project #content #project-releases a img {
                    display: block;
                    width: 100%;
                }
.single-release #content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        gap: 2rem
    }
@media only screen and (max-width: 1024px) {

    .single-release #content {
            grid-template-columns: 1fr
    }
        }
.single-release #content h1 {
            grid-column: 1 / -1;
        }
.single-release #content p {
            margin-bottom: 1rem;
        }
.single-release #content h2 {
            grid-column: 1 / -1;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
.single-release #content #release-projects {
            display: grid;
            grid-column: 1 / -1;
            grid-template-columns: repeat(3, 1fr)
        }
@media only screen and (max-width: 1024px) {

        .single-release #content #release-projects {
                grid-template-columns: repeat(2, 1fr)
        }
            }
@media only screen and (min-width: 1440px) {

        .single-release #content #release-projects {
                grid-template-columns: repeat(4, 1fr)
        }
            }
.single-release #content #release-projects .release-project {
                text-align: center;
            }
.single-release #content #release-projects a {
                display: inline-block;
                text-align: center;
                width: 100%
            }
.single-release #content #release-projects a.release-project-link {
                    width: auto;
                    margin: 0 auto;
                    padding-top: .5rem
                }
.single-release #content #release-projects a picture {
                    margin-bottom: .5rem;
                    position: relative
                }
.single-release #content #release-projects a picture:before {
                        content: "";
                        display: flex;
                        position: absolute;
                        background-image: url('../images/noise-transparent.png');
                        background-image: var(--noise-texture);
                        background-repeat: repeat;
                        height: 100%;
                        width: 100%;
                        mix-blend-mode: overlay;
                        background-size: cover;
                        pointer-events: none;
                        z-index: 3;
                        top: 0;
                        left: 0;
                    }
.single-release #content #release-projects a picture:hover:after {
                        content: "";
                        display: flex;
                        position: absolute;
                        background-image: url('../images/vhs.gif');
                        background-image: var(--gif-texture);
                        background-repeat: repeat;
                        height: 100%;
                        width: 100%;
                        translate: 0 0;
                        background-position-y: -20px;
                        background-size: cover;
                        mix-blend-mode: screen;
                        pointer-events: none;
                        opacity: 64%;
                        z-index: 3;
                        top: 0;
                        left: 0;
                    }
.single-release #content #release-projects a picture,
                .single-release #content #release-projects a img {
                    display: block;
                    width: 100%;
                }

