body {
    background-color: rgb(126, 165, 255);
    background-image: url(images/checkers.png);
    background-repeat: infinite;
    backdrop-filter: blur(2px);
    animation: backdropillusion 4s infinite;
    animation-timing-function: linear;
}

@keyframes backdropillusion {
    to {
        background-position: top 118px left 118px;
    }
}

p,
details,
summary,
blockquote,
h1,
h2,
h3,
a {
    font-family: MTCORSVA;
    color: white;
    text-shadow: 0px 2px 5px rgb(0, 167, 189);
    text-decoration: none;
    text-align: center;
}

a {
    font-size: 20px;
    font-family: MTCORSVA;
}

.youtube-link {
    color: #ff0000;
    font-weight: bold;
    font-size: 40px;
    text-decoration: underline;
    text-align: center;
}

.youtube-link:hover {
    color: #ff2727;

}

.gamejolt-link {
    color: #59ff00;
    font-weight: bold;
    font-size: 40px;

    text-decoration: underline;
    text-align: center;
}

.gamejolt-link:hover {
    color: #8fff6d;
}

.discord-link {
    color: #7289da;
    font-weight: bold;
    font-size: 40px;

    text-decoration: underline;
    text-align: center;

    text-shadow:
        -1px -1px 0 rgb(22, 64, 255),
        1px -1px 0 rgb(22, 64, 255),
        -1px 1px 0 rgb(22, 64, 255),
        1px 1px 0 rgb(22, 64, 255);
}

.discord-link:hover {
    color: #87a1ff;

}



details {
    background-color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 10px;

    interpolate-size: allow-keywords;

    &::details-content {
        transition:
            block-size 1s,
            content-visibility 1s allow-discrete;
        overflow: hidden;
        block-size: 0;
    }

    &[open]::details-content {
        block-size: auto;
    }
}

img {
    border-radius: 10px;
}

.center {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

.background {
    margin-left: auto;
    margin-right: auto;

    background-color: rgb(52, 184, 255);
    border-radius: 10px;
    padding: 10px;
    width: max-content;
    height: max-content;

    outline-width: 5px;
    outline-style: solid;
    outline-color: rgb(47, 255, 65);
}

iframe {
    display: block;
    margin-bottom: 20px;
}


/* NAVBAR */
.navBar {
    background-color: rgb(0, 166, 255);
    border-radius: 100px;
    padding: 10px;
    text-align: center;
    width: auto;
    height: auto;
    word-spacing: 100px;

    outline-width: 3px;
    outline-style: solid;
    outline-color: rgb(47, 241, 255);
}

.navBar-active {
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(50, 187, 255);
}

.navBar-inactive {
    padding: 10px;
}

.flex {
    display: flex;
    flex-wrap: wrap-reverse;
    padding: 10px;
    line-height: auto;
}

.flex>div {
    margin: 5px;
}

@font-face {
    font-family: MTCORSVA;
    src: url(MTCORSVA.TTF);
}