@font-face {
    font-family: "CLTAujournuit";
    src: url("/static/fonts/CLT_Aujournuit/web/Aujournuit-VariableVF.woff2")
        format("woff2-variations");
    src:
        local("CLTAujournuit-Regular"),
        url("/static/fonts/CLT_Aujournuit/desktop/Aujournuit-Regular.otf")
            format("opentype"),
        url("/static/fonts/CLT_Aujournuit/web/Aujournuit-Regular.woff2")
            format("woff2");
    font-weight: normal;
}

@font-face {
    font-family: "CLTAujournuit";
    src: url("/static/fonts/CLT_Aujournuit/web/Aujournuit-VariableVF.woff2")
        format("woff2-variations");
    src:
        local("CLTAujournuit-Wide"),
        url("/static/fonts/CLT_Aujournuit/desktop/Aujournuit-Wide.otf")
            format("opentype"),
        url("/static/fonts/CLT_Aujournuit/web/Aujournuit-Wide.woff2")
            format("woff2");
    font-weight: bold;
}

@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("/static/fonts/Atkinson_Hyperlegible_Next/AtkinsonHyperlegibleNext-VariableFont_wght.ttf")
        format("woff2-variations");
    src:
        local("AtkinsonHyperlegibleNext-Regular"),
        url("/static/fonts/Atkinson_Hyperlegible_Next/static/AtkinsonHyperlegibleNext-Regular.ttf")
            format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("/static/fonts/Atkinson_Hyperlegible_Next/AtkinsonHyperlegibleNext-Italic-VariableFont_wght.ttf")
        format("woff2-variations");
    src:
        local("AtkinsonHyperlegibleNext-Regular"),
        url("/static/fonts/Atkinson_Hyperlegible_Next/static/AtkinsonHyperlegibleNext-Italic.ttf")
            format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("/static/fonts/Atkinson_Hyperlegible_Next/AtkinsonHyperlegibleNext-VariableFont_wght.ttf")
        format("woff2-variations");
    src:
        local("AtkinsonHyperlegibleNext-Bold"),
        url("/static/fonts/Atkinson_Hyperlegible_Next/static/AtkinsonHyperlegibleNext-Bold.ttf")
            format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("/static/fonts/Atkinson_Hyperlegible_Next/AtkinsonHyperlegibleNext-Italic-VariableFont_wght.ttf")
        format("woff2-variations");
    src:
        local("AtkinsonHyperlegibleNext-BoldItalic"),
        url("/static/fonts/Atkinson_Hyperlegible_Next/static/AtkinsonHyperlegibleNext-BoldItalic.ttf")
            format("truetype");
    font-weight: bold;
    font-style: italic;
}

:root {
    --gradient-offset: 0svh;
    --duration: 15s;
}

html,
body {
    width: 100%;
    height: 100%;
    color: white;
    font-size: 26px;
    line-height: 1.43;
    margin: 0 0;
    padding: 0 0;
    font-family: "Atkinson Hyperlegible Next", sans-serif;
}
h1,
h2 {
    font-family: "CLTAujournuit", sans-serif;
    color: #b8ff00;
}

header {
    max-width: 90vw;
    margin: 0 auto;
    margin-bottom: -100px;
}

article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

a {
    color: inherit;
    text-decoration: underline;
}
.comma:last-of-type,
.and:not(:last-of-type) {
    display: none;
}

h1 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    text-align: center;
    padding: 25svh 0;
    font-size: 122px;
    font-weight: bold;
}

h1 span {
    --title-offset: -4px;
    animation: 10s text ease-in-out infinite;
    transform: translate3d(0, calc(-50% + var(--title-offset) + 15px), 0);
}

h1 span:hover {
    animation-play-state: paused;
}

h1 span:nth-of-type(2) {
    --title-offset: 150%;
    animation-delay: 0.3s;
}

h1 span:nth-of-type(3) {
    --title-offset: -75%;
    animation-delay: 2s;
}

h1 span:nth-of-type(4) {
    --title-offset: -100%;
    animation-direction: alternate;
    animation-delay: 5s;
}

h1 span:nth-of-type(5) {
    --title-offset: -15%;
}

h1 span:nth-of-type(6) {
    --title-offset: -22%;
    animation-delay: 1s;
}

h1 span:nth-of-type(7) {
    --title-offset: 75%;
}

.shapes {
    background-color: #c8cabd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    display: flex;
    flex-direction: rows;
}
.shape {
    --gradient-offset: 40svh;
    flex-grow: 2;
    z-index: -1;
    filter: blur(190px);
    position: relative;
}

.shape:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    background: rgba(66, 37, 34, 1);
    padding-top: 100%;
    transform: translate3d(0, -50%, 0) scaleY(2);
    filter: blur(10px);
    border-radius: 100%;
    animation: var(--duration) gradient ease-in-out infinite;
}

.shape:nth-of-type(2):before {
    animation-duration: calc(var(--duration) * 1.5);
    --gradient-offset: -10svh;
}
.shape:nth-of-type(3):before {
    animation-duration: calc(var(--duration) * 1.2);
    --gradient-offset: 25svh;
}
img#map{
    display: block;
    width: 70%;
    margin: 0 auto;
}
p#graduates img{
    width: 30px;
    vertical-align: middle;
    padding: 0.1em 0.35em 0.1em 0.3em;
}

@keyframes gradient {
    0%,
    100% {
        transform: translate3d(
                0,
                calc(-50% + var(--gradient-offset) + -50svh),
                0
            )
            scaleY(3) scaleX(1);
    }
    50% {
        transform: translate3d(
                0,
                calc(-50% + var(--gradient-offset) + 50svh),
                0
            )
            scaleY(3) scaleX(2);
    }
}

@keyframes text {
    0%,
    100% {
        transform: translate3d(0, calc(-50% + var(--title-offset) + 15px), 0);
        font-weight: 400;
    }
    50% {
        transform: translate3d(0, calc(-50% + var(--title-offset) + -15px), 0);
        font-weight: 800;
    }
}

@media (max-width: 900px) {
    h1 {
        padding: 70px 0;
        font-size: 60px;
    }
    body {
        font-size: 18px;
    }
    header {
        margin-bottom: 0;
    }
}
