/* colours */
:root {
    --soft-white: rgb(252, 242, 226);
    --soft-white: rgb(255, 240, 245);
    --soft-white: rgb(252, 242, 235);
    --soft-white: white;
    --soft-white-transparent: rgba(252, 242, 235, 0.8);
    --soft-white-transparent: rgba(252, 242, 235, 0.9);
    --soft-white-transparent: rgba(255, 255, 255, 0.9);
    --blue-grey: rgba(255, 255, 255, 0.6);
    --blank: rgba(235, 225, 184, 0.829);
    --soft-yellow: rgba(255, 238, 164, 0.8);
    --yellow: rgba(247, 215, 35, 0.8);
    --orange: rgba(255, 145, 0, 0.8);
    --black: rgba(0, 0, 0, 0.8);
    /*--hard-yellow: rgb(214, 202, 16);*/
    --neongr: rgb(183, 227, 60);
    --neonpurple: rgb(175, 100, 169);
    --blue: rgb(117, 188, 182);

    --blauw: rgb(35, 215, 229);
    --geel: rgb(246, 232, 31);
    --oranje: rgb(209, 53, 30);
    --roze: rgb(227, 46, 242);
    --groen: rgb(36, 234, 103);
    --zwart: rgb(15, 2, 38);
}

/*import fonts*/
@import url('/assets/fonts/LexendExa-Bold.ttf');
@import url('/assets/fonts/LexendExa-Light.ttf');
@import url('/assets/fonts/LexendExa-Medium.ttf');
@import url('/assets/fonts/LexendExa-Regular.ttf');

html, body {
    color: white;
    background-color: var(--zwart);
}

/* MAIN */

header {
    padding: 0em;
}

/*title*/
.title h1 {
    margin-bottom: 0em;
    position: relative;
    padding: 10px;
}

#site-title:hover,
#site-title:active {
    text-shadow: 1px 1px 10px white, 0 0 25px var(--roze);
    animation: pic-glitch .2s linear infinite;
}

/*navigaton*/
nav a {
    padding: 0.5em;
    font-size: 1.3em;
    font-family: 'Unbounded', serif;
    font-family: 'Lexend exa', monospace;
}
nav a:hover, nav a:active {
    color: var(--roze);
}

h1 {
    font-family: 'Unbounded', serif;
    font-family: 'Lexend exa', monospace;
    font-weight: 600;
    font-size: 2.5em;
}

h1.smaller {
    font-size: 2.3em;
    font-weight: 400;
    margin-left: 0em;
}

h2 {
    font-family: 'Unbounded', serif;
    font-family: 'Lexend exa', monospace;
    font-weight: 300;
    font-size: 1.4em;
}

main>h2 {
    margin-left: 0.6em;
}

h2.bigger {
    font-weight: 500;
    font-size: 2em;
}

h3 {
    font-family: 'Unbounded', serif;
    font-family: 'Lexend exa', monospace;
    font-weight: 400;
    font-size: 1.4em;
}

h3.bigger,
h2.bigger {
    font-weight: 500;
}

h4 {
    font-family: 'Cantarell', sans-serif;
    font-family: 'Lexend exa', monospace;
    font-weight: 200;
    font-size: 1.3em;
    margin: 0.6em 0.2em 0.5em 0.2em;
}

p,
li {
    font-family: 'Cantarell', sans-serif;
    font-family: 'Lexend exa', monospace;
    font-weight: 200;
    font-size: 1.1em;
}

em {
    font-style: oblique;
}

/*LINKS*/
a {
    color: var(--groen);
    text-decoration: none;
}

a:hover,
a:active {
    text-shadow: 1px 1px 10px white, 0 0 25px var(--groen);
    cursor: url('/media/eye.png'), pointer;
}

.no-style,
.line {
    color: white;
}

.no-style:hover,
.no-style:active {
    text-decoration: none;
}

ul {
    list-style: none;
}
ul.styled li:hover {
    list-style-type: '>';
}

header {
    top: 0;
    padding: 0.2em;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    flex-flow: row wrap !important;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    text-transform: lowercase;
}

main {
    padding: 0.5em;
}

#small {
    font-size: 0.6em;
}

.underline {
    text-decoration: underline;
}

mark {
    background-color: var(--neongr);
}

/*FOOTER*/
footer {
    padding: 0.2em;
    background-color: var(--zwart);
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
}
footer ul,
footer p {
    padding: 0.2em !important;
}

footer li {
    padding: .8em;
    margin: .1em;
    border-radius: 5em;
    background-color: var(--soft-white);
}

.flex-row {
    display: flex;
    flex-flow: row wrap;
}

/*CONTAINERS*/
.meta-container-column {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
}

.meta-container-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.container {
    padding: 0.8em;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: 1em;
    /*text-align: justify;*/
}

.container.justify {
    text-align: justify;
}

.container.draggable:hover {
    background-color: var(--roze);
    box-shadow: 1px 1px 10px white, 0 0 25px var(--groen);
}

.container-column {
    padding: 0.8em;
    background-color: var(--soft-white-transparent);
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
    margin: 1em;
}

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

.align-left {
    align-self: flex-start;
}

.align-right {
    align-self: flex-end;
}

.item-text {
    max-width: 400px;
    margin: 2em;
    padding: 0.2em;
}

.item-text-bigger {
    max-width: 700px;
}

.popup>.container .item-text {
    margin: 0.8em;
}

.item-title {
    writing-mode: vertical-lr;
    text-orientation: upright;
    text-transform: uppercase;
    text-align: center;
}

.img-text {
    font-size: 0.7em;
    /*padding: 0.7em;*/
    margin: 0em;
}

.item-img {
    padding: 0.8em;
}

.item-img:hover>.img-text,
.item-text:hover .img-text,
.item-img:active>.img-text,
.item-text:active .img-text {
    display: block;
}

/*DRAG*/
.draggable {
    cursor: grab;
    /*cursor: url('/media/toe.png'), grab;*/
}

.draggable:active {
    cursor: grabbing;
}

/*zoom some images*/
.zoom {
    transition: transform 1s ease;
}

.zoom:hover,
.zoom:active {
    cursor: zoom-in;
}

.zoom:active {
    transform: scale(2.8);
}

/*bubble*/

.bubble {
    text-align: center;
    text-transform: uppercase;
    border: 3px solid var(--black);
    border-radius: 15px;
    /*background-color: rgba(235, 225, 184, 0.829);*/
    padding: 10px;
    max-width: 10em;
    margin-top: 3em;
    position: relative;
}

.bubble:hover {
    color: white;
    background-color: var(--neongr);
    box-shadow: 2px 2px var(--black);
}

.bubble a {
    color: black;
}

.bubble:hover a {
    color: white;
}

.bubble a:hover {
    text-decoration: none;
}

.bubble:active {
    box-shadow: 2px 2px var(--black) inset;
}

/*Background images*/
.background_images {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

#main-header:hover .background_images,
#main-header:active .background_images {
    display: block;
}

.background_image {
    display: none;
    width: 100%;
}

/*Work list*/
.compositions {
    margin-block-start: 0em;
    padding-inline-start: 0em;
}

.compositions>li p {
    margin: 0em;
    padding: 0.3em 0em;
}

.compositions>li p a:hover {
    font-style: normal;
    cursor: url('/media/eye.png'), pointer;
    /*color: white;*/
}

.compositions>li {
    list-style-type: none;
}

/* MODAl POP-UPS*/
.modal {
    position: fixed;
    left: 40%;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: var(--neopurple);
    display: none;
    z-index: 10;
}

.modal-content {
    position: absolute;
    display: flex;
    flex-flow: row nowrap;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
}

.modal-content>iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-content>iframe>#document>html {
    background-color: var(--neopurple);
}

.close-button {
    color: var(--zwart);
    float: center;
    font-size: 5em;
    width: 0.7em;
    height: 100%;
    background-color: var(--groen);
    text-align: left;
    padding-left: 0.1em;
    cursor: url('/media/eye.png'), pointer;
}

.close-button:hover,
.close-button:active {
    color: var(--roze);
}

/*MEDIA PROJECTS*/
#media-projects {
    list-style-type: none;
    margin: 2em;
    padding: 0em;
    position: relative;
}

.media-container {
    float: left;
    padding: 0em;
    position: relative;
}

.media-container:hover .caption,
.media-container:active .caption {
    opacity: 1;
}

.media-container:hover img,
.media-container:active img {
    opacity: 1;
    filter: invert(1);
    animation: pic-glitch .2s linear infinite;
}

.media-container>img {
    margin: 1em;
    padding: 0em;
    float: left;
    z-index: 4;
    width: 300px;
    height: 100%;
}

.caption {
    position: absolute;
    left: 12em;
    top: -3em;
    opacity: 0;
    cursor: url('/media/eye.png'), pointer;
}

.media-blur {
    background-color: var(--roze);
    border: 2px var(--zwart) solid;
    box-shadow: 1px 1px 10px white, 0 0 25px var(--groen);
    margin: 1em;
    height: 200px;
    width: 300px;
    z-index: 5;
    position: absolute;
}

.media-text {
    font-size: 0.8em;
    z-index: 10;
    color: #fff;
    position: absolute;
    height: 200px;
    width: 300px;
    text-align: left;
    margin: 0.6em 1.8em;
    padding: 0.3em;
}

/*only for mobile*/
.open {
    display: none;
}

/*specials*/
#welcome {
    height: 700px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: var(--soft-white);
    text-transform: uppercase;
    text-align: right;
    padding-left: 20%;
}

#mobile {
    padding: .5em .7em;
    margin: 0em;
    border-radius: 5em;
    background-color: var(--soft-white);
}

/*DROPDOWN*/
#dropdown {
    position: absolute;
    color: var(--soft-white);
}

#dropdown-content {
    display: none;
    position: relative;
    background-color: var(--black);
    padding: 0.5em 0.8em;
}

#dropdown-content a {
    color: var(--soft-white);
}

#dropdown-content a:hover {
    color: var(--soft-white);
}

#dropdown:hover #dropdown-content {
    display: block;
}

/*SPECIAL*/
#eml-videos {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
}

#copyright {
    color: var(--soft-white);
    text-align: right;
    visibility: hidden;
}

/*button*/
button {
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: var(--groen);
    cursor: url('/media/eye.png'), pointer;
    display: inline-flex;
    fill: currentcolor;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    width: auto;
    z-index: 0;
}

button:hover, button:active {
    box-shadow: 1px 1px 10px white, 0 0 25px var(--groen);
    outline: none;
    background-color: var(--roze);
}

/*background sketch canvas*/
canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@keyframes pic-glitch {
    0% {
        background-position: 0 0;
        filter: hue-rotate(0deg);
    }

    10% {
        background-position: 5px 0;
    }

    20% {
        background-position: -5px 0;
    }

    30% {
        background-position: 15px 0;
    }

    40% {
        background-position: 5px 0;
    }

    50% {
        background-position: -25px 0;
    }

    60% {
        background-position: -50px 0;
    }

    70% {
        background-position: 0 -20px;
    }

    80% {
        background-position: -60px -20px;
    }

    81% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 0;
        filter: hue-rotate(360deg);
    }
}

/*CALENDAR*/
.container-column {
    padding: 1em;
    background-color: black;
    text-align: left;
}

main {
    padding: 0em 2em;
}

.calendar-item {
    margin: 0.8em 0.5em;
    padding: 0.5em;
    max-width: none;
}

.calendar-item:hover {
    background-color: var(--roze);
    box-shadow: 1px 1px 10px white, 0 0 25px var(--groen);
}

.calendar-item h4 {
    margin: 0em;

}
.calendar-item p {
    font-size: 1em;
}

.calendar-title {
    margin: 1.2em 0em;
    text-transform: uppercase;
    text-align: left;
}

.item-title h3 {
    writing-mode: horizontal-tb;
    text-align: left;
}

.calendar-item p {
    margin: 0em;
}

.pop {
    border: rgba(0, 0, 0, 0) 1px solid;
    border-radius: 100%;
    padding: 5px 10px;
    cursor: pointer !important;
}
.pop:hover {
    cursor: url('/media/eye-light.png'), auto;
    color: var(--roze);
}

.popup {
    display: none;
    margin-left: 8em;
    margin-top: -3.4em;
}
.show {
    display: block;
}

.popup.compositions {
    display:none;
    margin-left: inherit;
    margin-top: inherit;
}