@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 100;
    src: url(Exo2-VariableFont_wght.ttf) format('truetype');
}

@font-face {
    font-family: 'Trade Winds';
    font-style: normal;
    font-weight: 400;
    src: url(TradeWinds-Regular.ttf) format('truetype');
}

@property --＠color-1 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(0, 100%, 47%);
}

@property --＠color-2 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(27, 100%, 50%);
}

@keyframes gradient-change {
    to {
        --＠color-1: hsl(50, 88%, 60%);
        --＠color-2: hsl(20, 100%, 32%);
    }
}

html, body {
    background: #000;
    /*background: radial-gradient(circle, rgba(75, 75, 75, 1) 0%, rgba(24, 24, 24, 1) 57%, rgba(01, 01, 01, 1) 100%);*/
}

* {
    margin: 0;
    padding: 0;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.slides {
    width: 100%;
    height: 100vh;
    display: grid;
    scroll-snap-align: start;
}

.brand {
    font-family: "Trade Winds", sans-serif;
    font-size: 3rem;
    text-shadow: 0.3em 0.3em #333;
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(24, 29, 38, 0.4);
    background: linear-gradient(180deg, rgba(24, 29, 38, 0.4) 0%, rgba(77, 88, 109, 0.4) 69%, rgba(113, 130, 160, 0.4) 100%);
}

.brand .blazing {
    width: 100%;
    color: #FFA600;
    text-align: right;
}

.brand .torch {
    width: 100%;
    color: white;
    text-align: left
}

.brand .logo {
    background-image: url("Logo.svg");
    width: 434px;
    height: 173px;
    background-size: auto;
    background-repeat: no-repeat;
    align-self: center;
    justify-self: center;
}


.about {
    font-family: "Trade Winds", sans-serif;
    display: grid;
    grid-template-rows: max-content auto;
    height: 100%;
    background-image: url(2-2k.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}

.games {
    font-family: "Trade Winds", sans-serif;
    display: grid;
    grid-template-rows: max-content auto;
    height: 100%;
    background-image: url(1-1440p.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}


.imprint {
    font-family: "Trade Winds", sans-serif;
    display: grid;
    grid-template-rows: max-content auto;
    place-items: center;
    height: 100%;
    background-image: url(3-2k.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.5);
    /*background-blend-mode: multiply;*/
}

.brand-small {
    align-self: end;
    justify-self: end;
    margin: 24px;
}

.brand-small .blazing {
    /* apply variable changes over time */
    animation: gradient-change 2s linear infinite alternate;
    background: linear-gradient(
            to top in oklch,
            var(--＠color-1),
            var(--＠color-2));
    color: transparent;
    /* old browser support */
    -webkit-background-clip: text;

    /* modern browser version */
    background-clip: text;
}

.brand-small .torch {
    color: white;
}

.ant-anchor-link-title {
    color: #FFF !important;
    font-family: 'Exo 2', sans-serif;
    font-weight: bold;
    opacity: 0.5;
}

.ant-anchor-link-title-active {
    opacity: 1;
}

.ant-anchor-ink {
    background-color: #FFA600 !important;
}

.text-content {
    font-family: 'Exo 2', sans-serif;
    color: white;
    height: 90%;
    margin: 16px;
    padding: 16px;
    padding-top: 64px;
    background: #000000ee;
    border-radius: 8px;
    border: solid 4px #666;
    border-style: ridge;
    box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.5);
}

.text-content h2 {
    color: #fff;
    opacity: 0.9;
}

@media only screen and (max-width: 600px) {
    .brand .logo {
        width: 100%;
        background-size: 200px;
        background-position-x: center;
        background-position-y: center;
    }
}
