@keyframes mainLogoAnimation {

    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes backgroundAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInRules {
    0% {
        opacity: 0;
        transform: translateX(5vw);
    }

    20% {
        opacity: 0;
    }

    100% {
        transform: translateX(0vw);
        opacity: 1;
    }
}



* {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif, Arial;
}

html {
    width: 100%;
    overflow-x: hidden;

}

#master {
    position: relative;
    width: 100%;
    background-color: #181818;
    overflow: hidden;
}

#backgroundColor {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(24, 24, 24, 1) 5%, rgb(11, 90, 0) 190%);
    animation: backgroundAnimation 2000ms forwards ease-in-out;
}

.mainLogoContainer {
    position: relative;
    width: 100dvw;
    min-height: 1dvw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainLogoContainer .logo {
    position: relative;
    height: 15rem;
    width: min(40rem, 85dvw);
    background-image: url("../assets/images/logo_regelwerk.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 5;
    transform: scale(0);
    animation: mainLogoAnimation 1700ms 200ms forwards ease;
}

#footer {
    position: relative;
    background-color: #18181875;
}

#footer .footerText {
    position: relative;
    color: white;
    font-size: .8rem;
    text-align: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#rulesContainer {
    --padding-size: 5%;

    position: relative;
    color: white;
    margin-left: var(--padding-size);
    width: calc(100% - (var(--padding-size) * 2));
    margin-top: 1rem;
}

#rulesContainer .ruleSection {
    padding-bottom: 5rem;
    opacity: 0;
    animation: 1.5s .8s forwards fadeInRules
}

#rulesContainer .ruleSection .title {
    font-size: 2.1rem;
    font-weight: 600;
    text-decoration: underline;
}

#rulesContainer .ruleSection .subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 2rem;
}

#rulesContainer .ruleSection .title.space {
    padding-bottom: 2rem;
}

#rulesContainer .ruleSection .regelBox {
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 1.5rem;
}

#rulesContainer .ruleSection .regelBox .stichpunkt {
    padding-right: .6rem;
    font-weight: 500;
    font-size: 1.1rem;
}

#rulesContainer .ruleSection .regelBox .regel {
    font-weight: 600;
    font-size: 1.1rem;
}

#rulesContainer .ruleSection .regelBox .description {
    padding-left: 1.1rem;
}