body {
    background-color: #1b1b1b;
    color: white;

    font-family: "Krona One", sans-serif;

    margin: 0;
    padding: 0;

    overflow-x: hidden;
}

#content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;

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

section {
    display: flex;
    width: 100%;
    min-height: 100vh;

    justify-content: space-between;
    align-items: center;
}

/* left hero */

#ca {
    padding: 12px 2px;

    text-align: center;

    border-radius: 39600px;
    border: 1px solid rgba(255, 255, 255, 0.4);

    background-image: linear-gradient(to bottom, rgba(254, 168, 0, 0.05), rgba(229, 96, 0, 0.02)), linear-gradient(to bottom, transparent, #22201e);

    font-family: "Open Sauce Two", sans-serif;
}

#ca text {
    font-size: 16px;
    opacity: 0.7;
}

#title {
    font-size: 72px;
    margin: 35px 0;
}

a {
    cursor: none;
}

button {
    height: 64px;

    padding: 19px 50.5px 20px 51px;

    background-color: white;
    color: black;

    border: none;
    border-radius: 9999px;

    font-family: inherit;
    font-size: 20px;

    cursor: none;
}

.cta {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 25px;
}

#socials {
    display: flex;
    width: fit-content;
    gap: 20px;
}

/* info */

#info {
    max-width: 520px;
    font-family: "Open Sauce Two", sans-serif;
}

/* hof */

#hof #title {
    margin-top: 0;
    margin-bottom: 130px;
}

#people {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.person {
    flex: 1 0 21%;
    text-align: center;
}

.person.raw img {
    width: 198px;
    height: 198px;

    object-fit: cover;

    border-radius: 5px;
    border: 1px solid white;
}

/* fx */

#cursor {
    position: fixed;
    pointer-events: none;
}

/* loading card */


.loading-card {
    bottom: 0;
    opacity: 1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(0px);
    user-select: none;
    background-color: #1b1b1b;
}

.loading-card.slide-out {
    filter: blur(30px);
    background-color: transparent;
    opacity: 0;
    transition-delay: 0.25s;
    transition-duration: 1s;
}

.loading-card .loading-title {
    scale: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 44px;
}

.loading-card.slide-out .loading-title {
    scale: -20%;
    transition-delay: 0.25s;
    transition-duration: 0.75s;
}

#info-title {
    font-size: 43px;
}

#hof-title {
    font-size: 60px;
}

@media screen and (max-width: 1100px) {
    section {
        flex-direction: column-reverse;
        justify-content: center;
    }

    #info-section {
        flex-direction: column;
    }

    img {
        max-width: calc(100vw - 50px);
    }

    #ca {
        padding: 6px 12px;
        padding-top: 2px;
    }

    #ca text {
        font-size: 12px;
    }

    #title {
        font-size: 40px;
        margin: 20px;
    }

    #title_ca {
        display: flex;
        flex-direction: column-reverse;

        margin-bottom: 30px;
    }

    .left {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cta {
        width: 100%;
    }

    #info {
        max-width: calc(100vw - 70px);
    }

    #info-title {
        font-size: 20px;
    }

    #hof-title {
        text-align: center;
        font-size: 30px;
    }

    .person {
        flex: 1 0 21%;
        text-align: center;


    }

    .person img {
        width: 100px !important;
        height: 100px !important;
    }
}