body {
    background: linear-gradient(to left top, #252525, #0e0e0e);
    background-attachment: fixed;
    color: white;
    height: 100%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.navbar {
    background-color: #13131385;
    backdrop-filter: blur(10px) brightness(0.8);
    z-index: 100;
    position: fixed;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.877) 0px 5px 15px;
    padding: 10px;
}


.left {
    float: left;
}

.middle {
    display: inline-flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.right {
    float: right;
    margin-top: 2px;
    margin-right: 25px;
}

.logo {
    transition: 0.4s;
}

.logo:hover {
    transform: rotate(5deg) scale(1.2);
    cursor: pointer;
}

.body {
    align-items: center;
    z-index: 1;
    padding-top: 90px;
    margin: auto;
    width: 50%;
}


.centered {
    text-align: center;
}

.plugincard {
    background-color: #2525259a;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 25px;
    filter: drop-shadow(0px 0px 5px #0e0e0e);
    margin-right: 10px;
    transition: 0.2s;
}

.plugincard:hover {
    transform: translateY(-5px);
}

.plugincard img {
    height: 100px
}

.social_codeberg {
    background-color: #25253f;
    font-family: Russo One, Arial, Helvetica, sans-serif;
    color: white;
    border: none;
    filter: drop-shadow(0px 0px 5px #1c1c2b);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.social_discord {
    background-color: #313266;
    font-family: Russo One, Arial, Helvetica, sans-serif;
    color: white;
    border: none;
    filter: drop-shadow(0px 0px 5px #1c1c2b);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.social_email {
    background-color: #444444;
    font-family: Russo One, Arial, Helvetica, sans-serif;
    color: white;
    border: none;
    filter: drop-shadow(0px 0px 5px #1c1c2b);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.social_codeberg:hover,
.social_discord:hover,
.social_email:hover {
    transform: scale(1.04)
}


.search {
    background-color: #141414;
    color: white;
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #1f1f1f;
    width: 300px;
    transition: 0.2s;
}

.search:focus {
    width: 500px;
}


@media only screen and (max-width: 600px) {
    .body {
        text-align: left;
        width: 90%;
    }

    .plugincard img {
        height: 80px
    }

    .contentimg {
        width: 100%;
    }

    .logo:hover {
        transform: none;
    }

    .search {
        width: 130px;
    }

    .search:focus {
        width: 130px;
    }
}

.contentimg {
    border-radius: 10px;
}

.link {
    text-decoration: none;
    color: #b4b4b4;
    display: flex;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
    align-items: center;
}

.footerlink {
    text-decoration: none;
    color: #b4b4b4;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
    align-items: center;
}

.menuBlur {
    z-index: 0;
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px) brightness(0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.menu {
    position: fixed;
    left: 50%;
    top: 50%;
    background: #141414;
    background: linear-gradient(142deg, rgba(20, 20, 20, 0.603) 0%, rgba(17, 17, 17, 0.808) 70%);
    backdrop-filter: blur(15px) brightness(0.8);
    filter: drop-shadow(0px 0px 19px #000000);
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    z-index: 0;
    height: 400px;
    margin-top: -200px;
    width: 400px;
    margin-left: -200px;

    outline: 2px dashed rgb(61, 61, 61);
    pointer-events: none;

    opacity: 0;
    transition: opacity 0.2s linear;
}

.show {
    opacity: 1;
}

.config {
    display: inline;
    padding: 0;
    line-height: inherit;
    word-wrap: normal;
    background-color: transparent;
    border: 0;
}

pre {
    overflow: auto;
    padding: 16px;
    background-color: #1a1a1a;
    color: #a5a5a5;
    border-radius: 10px;
    border: 2px solid rgb(32, 32, 32);
    line-height: 1.45;
    transition: 0.5s;
}

pre:hover {
    transform: translateY(-3px);
}


.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #747474;
    border-bottom: 2px solid #747474;
    position: relative;
    transform: rotate(-45deg);
    margin-left: 3px;
    transition: all .3s ease;
}

.link:hover>.arrow {
    transform: rotate(-45deg) translate(4px, 4px);
    border-color: #bd86fc;
}

.link:hover {
    color: white;
}

#sec1,
#sec2,
#sec3,
#sec4,
#sec5,
#sec6 {
    margin-top: -100px;
    padding-top: 100px;
}


h2 {
    transition: color 0.2s linear;
}

.heading-flash {
    color: #f7f56c;
}

@keyframes flashAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.alert {
    background-color: #252525;
    border-color: yellow;
    position: relative;
    margin-block-end: 20px;
    padding: 1em;
    border-width: 0 0 0 4px;
    border-radius: 10px;
    border-style: solid;
    font-weight: bold;
}


::highlight(search-match) {
    color: black;
    background-color: yellow;
}