/* VARIABLES */
:root {
    --green-glow: #13f37e;
    --green-highlight: #abf226;

    --background-purple: #392384;
    --background-purple-light: #654ca2;
    --background-green: #35d795;
    --background-green-light: #4be8a9;

    --circle-x: 200%;
    --circle-y: 200%;
}

/* PAGES */
html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background: var(--background-purple);
}

.container {
    width: clamp(180px, 100% - 96px, 1080px);
    margin: auto;
    /* margin: 48px; */
    padding-top: 164px;
    padding-bottom: 128px;
    /* border: 1px solid white; */
    text-align: center;
}

.footer {
    width: calc(100% - 96px);
    padding: 48px;
    background: #00000060;
}

.scroll-arrow {
    position: fixed;
    pointer-events: none;
    width: 40%;
}

#arrow-left {
    top: 0px;
    left: -15%;
}

#arrow-right {
    bottom: 0px;
    right: -15%;
}

/* RESPONSIVE PAGES */
@media only screen and (min-width: 901px) {
    .container {
        width: clamp(180px, calc(100% - 96px), 1080px);
        /* margin: 48px; */
    }

    .footer {
        width: calc(100% - 96px);
        padding: 48px;
        background: #00000060;
    }
}

@media only screen and (max-width: 900px) {
    .container {
        width: clamp(180px, calc(100% - 48px), 1080px);
        /* margin: 24px; */
    }

    .footer {
        width: calc(100% - 48px);
        padding: 24px;
        background: #00000060;
    }
}

/* STANDARDS */
.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* FONTS */
h1, h2, h3 {
    font-family: dicaps;
}

h1 {
    background: radial-gradient(circle at var(--circle-x) var(--circle-y), var(--green-highlight), var(--green-glow) 124px);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    color: white;
    font-family: dicaps;
    text-shadow: 1px 1px 2px rgb(0,0,0,0.5);
}

h3 {
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--background-purple);
    font-family: dicaps;
}

.text-box p {
    color: var(--background-purple);
}

p, span {
    margin-top: 12px;
    margin-bottom: 24px;
    color: white;
    font-family: bahn;
}

a {
    margin: 24px;
    font-family: dicaps;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgb(0,0,0,0.5);
    color: white;
    cursor: pointer;
}

a:hover, a:active {
    color: var(--green-glow);
}

.faq-text-question, .rule-item {
    font-family: dicaps;
    font-size: 24px;
    color: white;
    text-shadow: 1px 1px 3px rgb(0,0,0,0.5);
}

.faq-text-description {
    font-family: bahn;
    font-size: 18px;
    color: #ddd;
    text-shadow: 1px 1px 2px rgb(0,0,0,0.5);
}

.light-box {
    font-family: bahn;
    color: #654ca2;
    font-size: 18px;
}

/* RESPONSIVE FONTS */
@media only screen and (min-width: 901px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 20px;
    }

    a {
        font-size: 20px;
        margin: 12px;
    }

    .footer a {
        font-size: 36px;
    }
}

@media only screen and (max-width: 900px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    a {
        font-size: 16px;
        margin: 10px;
    }

    .footer a {
        font-size: 24px;
    }
}

@font-face {
    font-family: bahn;
    src: url(fonts/BAHNSCHRIFT.TTF);
}

@font-face {
    font-family: dicaps;
    src: url(fonts/dDicapslock.ttf);
}

@font-face {
    font-family: element;
    src: url(fonts/element-font-lustrum-dsc.ttf);
}

.yt {
    position: relative;
    display: block;
    width: 100%; /* width of iframe wrapper */
    height: 0;
    margin: auto;
    padding: 0% 0% 56.25%; /* 16:9 ratio */
    overflow: hidden;
}
  
.yt iframe {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.uitleg_logo {
    margin-top: 240px;
    margin-bottom: 160px;
    width: 100%;
}