:root {
    --body-color: rgb(26, 26, 26);
    --border-color: rgb(76, 76, 76);
    --hover-color: rgb(42, 42, 42);
    --text-color: white;
    --erfolgs-meldung-color: #26d953;
    --deaktiviert-color: #ae0202ff;
    --stern-color: rgb(255, 187, 0);
}

::-webkit-scrollbar {
    display: none;
}

::selection {
    background-color: rgb(255, 136, 0);
    color: white;
}

html {
    width: 100vw;
    height: 100vh;
}

body {
    background-color: var(--body-color);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    position: relative;
}

header {
    position: relative;
    background-color: rgb(41, 41, 41);
    border-bottom: 2px solid white;
    max-height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slide-in-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 5;
    user-select: none;
}

.header-br {
    display: none;
}

.header-text,
.header-icon-left {
    font-size: 35px;
    color: var(--text-color);
}

.header-text {
    font-weight: 600;
}

.header-icon-left {
    position: absolute;
    left: 10px;
}

header a {
    text-decoration: none;
    padding: 20px;
}

.noscript-body {
    height: 100%;
    width: 100vw;
    background-color: rgb(177, 0, 0);
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.noscript-container {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border: 3px solid white;
    border-radius: 15px;
    color: var(--text-color);
    font-size: 18px;
    font-family: sans-serif;
    padding: 15px;
}

.noscript-container i {
    font-size: 50px;
}

.burger-menu-button-container {
    padding-right: 15px;
}

.burger-menu-button-container button {
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: var(--text-color);
}

.burger-menu-button-container button:hover {
    cursor: pointer;
}

.burger-container {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 3;
}

#burgerMenu {
    position: absolute;
    top: -12rem;
    width: 80%;
    background-color: rgb(65, 65, 65);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--text-color);
    gap: 5px;
    padding: 20px 15px;
    font-size: 20px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;

    transition: top 1s ease;
}

#burgerMenu.open {
    top: 0;
}

#burgerMenu.close {
    top: -12rem;
}

.burger-button {
    transition: 0.5s;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-button i {
    padding-right: 5px;
}

.burger-button:hover {
    cursor: pointer;
    color: orange;
}

.burger-menu-container hr {
    width: 100%;
}

.errungenschaften-container {
    user-select: none;
    position: fixed;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.164);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 10rem;
    max-height: 10rem;
    padding: 8px 10px;
    border-top-right-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slide-in-bl 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1.8s;
    z-index: 2;
}

.sterne {
    height: 100%;
    display: flex;
    align-items: center;
}

.informations-container {
    user-select: none;
    position: fixed;
    bottom: -1px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.107);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 20rem;
    max-height: 10rem;
    padding: 14px 13px;
    border-top-left-radius: 12px;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slide-in-br 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 1.8s;
    z-index: 1;
}

.infos {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.infos a {
    color: var(--text-color);
    text-decoration: none;
}

.infos a:hover {
    text-decoration: underline;
}

.sterne i {
    color: var(--stern-color);
    font-size: 30px;
    padding-right: 5px;
}

@media only screen and (max-width: 780px) {
    .header-icon {
        display: none;
    }

    .header-text {
        font-size: 27px;
    }
}