::-webkit-scrollbar {
    display: none;
}

:root {
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
}

.dark {
    --header1-color: #ffffff;
    --header2-color: #ffffff;
    --header-background-color: #202124;
    --text-color: #ffffff;
    --background-color: #171717;
    --item-border-color: #000000;
    --item-background-color: #202124;
    --shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    --shadow-hover: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.39);
    --error: lightcoral;
}

.red {
    --header1-color: #000;
    --header2-color: #fff;
    --header-background-color: #f00;
    --text-color: #fff;
    --background-color: #900;
    --item-border-color: #900;
    --item-background-color: #202124;
    --shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
    --shadow-hover: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.39);
    --error: lightcoral;
}

.halloween {
    --header1-color: rgb(255, 166, 0);
    --header2-color: #000;
    --header-background-color: #000;
    --text-color: #000;
    --background-color: rgb(255, 166, 0);
    --item-border-color: #000;
    --item-background-color: #fff;
    --shadow: none;
    --shadow-hover: none;
    --error: darkred;
}

.green {
    --header1-color: #0f0;
    --header2-color: #0f0;
    --header-background-color: #000;
    --text-color: #0f0;
    --background-color: #000;
    --item-border-color: #0f0;
    --item-background-color: #000;
    --shadow: none;
    --shadow-hover: none;
    --error: #0f0;
}

.light {
    --header1-color: #000;
    --header2-color: #000;
    --header-background-color: #03dac6;
    --text-color: #000;
    --background-color: #fff;
    --item-border-color: #fff;
    --item-background-color: #fff;
    --shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    --shadow-hover: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.39);
    --error: red;
}

.fancy {
    --header1-color: #f78e66;
    --header2-color: #f78e66;
    --header-background-color: #191f24;
    --text-color: #a79e8b;
    --background-color: #101417;
    --item-border-color: #507386;
    --item-background-color: #101417;
    --shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    --shadow-hover: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.39);
    --error: lightcoral;
}

.colorful {
    --header1-color: #222;
    --header2-color: #fff;
    --header-background-color: lime;
    --text-color: #eee;
    --background-color: #0336ff;
    --item-border-color: #0096aa;
    --item-background-color: #222;
    --shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    --shadow-hover: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.39);
    --error: lightcoral;
}


/* .flash {
    background-color: #fff !important;
    color: #fff !important;
    border: 2px solid #fff !important;
} */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    user-select: none;
    background-color: var(--background-color);
    color: var(--text-color);
}

h1 {
    color: var(--header1-color)
}

h2 {
    color: var(--header2-color)
}

p {
    text-align: center;
    color: var(--text-color);
}

.httpparent {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* #update {
    cursor: pointer;
} */

.http {
    cursor: pointer;
    background-color: var(--item-background-color);
    border: none;
    color: var(--error);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 300ms;
    box-shadow: var(--shadow);
    border: 2px solid var(--item-border-color);
    border-radius: 12px;
}

.http:hover {
    transition: all 300ms;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.http:focus {
    transition: all 300ms;
    transform: scale(0);
}

.title {
    cursor: pointer;
    padding: 15px;
    background-color: var(--header-background-color);
    color: var(--header-color);
    transition: all 300ms;
    text-align: center;
}

.title:hover {
    transition: all 300ms;
    font-size: 38px;
}

.flex-container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding: 60px;
}

.flex-item {
    cursor: pointer;
    width: 300px;
    text-align: center;
    background-color: var(--item-background-color);
    justify-content: center;
    border: 2px solid var(--item-border-color);
    border-radius: 12px;
    flex-direction: column;
    /* fabian was zum teufel */
    /* margin: 50px; */
    transition: all 300ms;
    box-shadow: var(--shadow);
}

.flex-item:hover {
    transition: all 300ms;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}