@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    box-sizing: border-box;
    font-family: Lexend;
    color: rgb(228, 228, 228);
}

html, body {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    background-image: url(assets/backgrounds/backgroundindex.gif);
    background-color: rgba(0, 0, 0, .5);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.mainheader, .mainheader-short {
    background-image: linear-gradient(rgba(7, 1, 54, 0.9), rgba(0, 0, 0, 0));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header {
    display: flex;
    max-width: fit-content;
    margin-inline: auto;
}

.header-short {
    display: flex;
    width: 100%;
    max-width: 100vw;
    margin-inline: auto;
    justify-content: center;
    align-items: center;
}

.logo, .logo-short {
    width: 22rem;
    height: auto;
    padding: 1rem;
    display: block;
    margin: auto;
    opacity: .8;

    transition-duration: 0.1s;
}

.logo-short {
    width: clamp(10rem, 40vw, 40rem);
    padding: .5rem;
    margin-top: .5rem;
}

.logo:hover, .logo-short:hover {
    opacity: 1;
    scale: 105%;
    filter: drop-shadow(0 10px 20px rgb(13, 0, 58));
}
.logo:active, .logo-short:active {
    scale: 100%;
    opacity: .9;
    filter: drop-shadow(0 0px 20px rgb(13, 0, 58));
}

.leftnav, .rightnav {
    font-size: 1.5em;
    font-weight: bolder;
}

.leftnav ul, .rightnav ul {
    margin-top: 2.5em;
    padding: 0em;
}

.leftnav li, .rightnav li {
    display: inline;
    color: rgba(228, 228, 228, .8);
    padding: 1em;

    transition-duration: 0.05s;
}

.leftnav li:hover, .rightnav li:hover {
    color: white;
    text-shadow: 0 10px 20px rgb(8, 0, 36);
}

.leftnav li:active, .rightnav li:active {
    color: rgba(255, 255, 255, .5);
    text-shadow: 0 0 15px rgb(8, 0, 36);
}

.leftnav a, .rightnav a {
    text-decoration: none;
}

.leftnav-short ul, .rightnav-short ul {
    display: flex;
    margin-top: clamp(2rem, 5vw, 5rem);
    padding: 0;
    gap: clamp(0.5rem, 2vw, 2rem);
    list-style-type: none;
}

.leftnav-short li, .rightnav-short li {
    display: inline;
    padding: 0;
    margin-right: clamp(.25rem, .5vw, 1.5rem);
    margin-left: clamp(.25rem, .5vw, 1.5rem)
}

.headericon {
    width: clamp(1.75rem, 5vw, 5rem);
    height: auto;
    filter: brightness(0) saturate(100%) invert(75%) sepia(95%) saturate(1%) hue-rotate(355deg) brightness(98%) contrast(102%);
    opacity: 0.8;

    transition-duration: 0.05s;
}
.headericon:hover {
    filter: brightness(100%) saturate(0%) sepia(0%);
    filter: drop-shadow(0 10px 20px rgb(8, 0, 36));
    opacity: 1;
    scale: 105%;
}
.headericon:active {
    scale: 95%;
    opacity: 0.5;
    filter: drop-shadow(0 0 15px rgb(8, 0, 36));
}

.emptyspace {
    height: 164px;
    width: auto;
}

@media screen and (min-width: 903px)
{
    .mainheader-short {
        display: none;
    }
}
@media screen and (max-width: 902px) {
    .mainheader {
        display: none;
    }
}

/* start of section */

.himages {
    width: 50rem;
    max-width: 100%;
    display: block;
    margin: auto;
    opacity: 1;
    filter: drop-shadow(0 10px 20px rgb(13, 0, 58));
    z-index: 2;
}

small {
    font-size: clamp(.5vw, 2rem, 4vw);
    color: rgb(155, 150, 194);
}

p {
    font-size: clamp(.5vw, 2rem, 4vw);
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
}

.buttondiv {
    text-align: center;
}

button {
    background-color: rgba(228, 228, 228, .1);
    border: none;
    border-radius: 20em;
    width: max-content;
    height: 3em;

    font-size: clamp(.5vw, 2rem, 3vw);
    font-weight: bold;
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    filter: drop-shadow(0 0 50px rgba(47, 21, 87, 1));

    transition-duration: 0.05s;
}
@media screen and (max-width: 400px) {
    button {
        width: 100%;
        height: 3em;
        font-size: 1rem;
    }
    .buttondiv {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

button:hover {
    cursor: pointer;
    background-color: rgba(228, 228, 228, .2);
    scale: 105%;
}

button:active {
    background-color: rgba(228, 228, 228, .3);
    opacity: .5;
    scale: 95%;
}

a {
    text-decoration: none;
}

.ytembed {
    width: 30rem;
    height: 16.875rem;
    display: block;
    margin: auto;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgb(13, 0, 58);
}
@media screen and (max-width: 900px)
{
    .ytembed {
        width: 80vw;
        height: 45vw;
    }
}

.funfactlist {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 64px;
    padding-bottom: 128px;
}

.funfact {
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(228, 228, 228, .1);
    border: none;
    border-color: rgb(228, 228, 228);
    border-radius: 40px;
    height: 10rem;
    width: 25rem;
    padding: 2rem;
    margin: 1rem;
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    flex-wrap: wrap;
    box-shadow: 0 0 50px rgba(47, 21, 87, 1);

    transition-duration: .1s;
}
@media screen and (max-width: 900px) {
    .funfact {
        width: 17rem;
        height: 7rem;
        font-size: 1rem;
    }
}

.funfact a {
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.funfact:hover {
    scale: 105%;
    border-width: 8px;
    color: white;
    border-color: white;
    cursor: help;
}

.collection, .conceptart {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.collection img, .conceptart img {
    display: block;
    height: 20rem;
    border-radius: 20px;
    margin: 1rem;
    box-shadow: inset 0 0 50px 20px rgb(12, 0, 78), 0 0 50px rgb(13, 0, 58);

    transition-duration: .05s;
}
@media screen and (max-width: 900px) {
    .collection img, .conceptart img {
        width: 100%;
        height: auto;
    }
}