@font-face {
    font-family: 'Humane';
    src: url("./Humane-SemiBold.ttf");
}

@font-face {
    font-family: 'SansFranciscoText';
    src: url("./SFNSText-Regular.otf");
}

@font-face {
    font-family: 'SansFrancisco';
    src: url("./SFUIDisplay-Bold.ttf");
    font-weight: bold;
}

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

h1 {
    font-size: 15rem;
    font-family: 'Humane', sans-serif;
    background-image: linear-gradient(#AAFAC5 40%, #f7f7f7 60%, #6aafff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    height: fit-content;
    padding-block: 5rem;
    background: url(.png), url(background.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    gap: 2rem;
}

h2 {
    font-size: 3rem;
    color: white;
    font-family: 'SansFranciscoText', sans-serif;
    text-transform: lowercase;
    position: relative;
    top: -2rem;
    /* workshop */

    background: linear-gradient(132.03deg, #6AAFFF 26.3%, #F8FAF9 48.45%, #CCFFDD 74.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-size: 250px;
    background-position-x: -10px;
}

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

p {
    font-size: 1rem;
    color: white;
    font-family: 'SansFranciscoText', sans-serif;
    text-transform: lowercase;
    margin-bottom: 3rem;
}

a {
    text-decoration: none;
    color: black;
    padding: 1rem 2rem;
    font-family: 'SansFrancisco', sans-serif;
    background: linear-gradient(45deg, #AAFAC5, #f7f7f7, #6aafff);
    border-radius: 0.8rem;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5rem;
}

nav svg {
    animation: none;
    width: 100vw;
    margin-bottom: 7rem;
}

svg {
    width: 50px;
    height: 50px;
    animation: rotation 10s linear infinite forwards;
}

.disclaimer {
    font-size: 0.8rem;
    margin: 0;
}

.first {
    margin-bottom: 1rem;
    margin-top: 5rem;
}

@keyframes rotation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1000px) {

    nav svg {
        width: 100%;
        padding-inline: 1rem;
        margin-top: 1rem;
        margin-block: auto;
        display: block;
        margin-bottom: 7rem;
    }
}

@media only screen and (max-width: 500px) {
    .disclaimer {
        position: unset;
    }
}