/*Wichtige Seiten:*/
/*https://ionic.io/ionicons*/

:root {
    --darkmodegrey: #111111; 
    --bimsincrediblecolor: #5e17eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
* ::selection {
    color: white;
    background-color: var(--bimsincrediblecolor);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color:  var(--darkmodegrey) white;
}

body {
    background-color: white;
}
footer { 
    margin-bottom: 0;
}


.Trenner {
    margin: 70px;
    padding: 2px;
    color: var(--darkmodegrey);
    background-color: var(--darkmodegrey);
}

.error250 {
    display: none;
    z-index: 100;
    background-color: var(--bimsincrediblecolor);
    color: white;
    position: fixed;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 100px;
    flex-direction: column;
}

.error250 h1{
    font-size: 20vw;
}
.error250 h2{
    font-size: 7vw;
}

@media (max-width: 250px) {
    .error250 {
        display: flex;
    }
}


/*footer*/

.ImpressumDatenschutz {
    color: var(--darkmodegrey);
    text-decoration: none;
    width: 100%;
    height: fit-content;
    text-align: center;
    position: absolute;
    bottom: 5%;
}