:root {
    --primaryColor: #fffb00;
    --textColor: #313131;
    --backgroundColor: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Satoshi-Variable', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    background-color: var(--backgroundColor);
    color: var(--textColor);
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
    transition: background-color 300ms;
    min-height: 100vh;
}

button {
    color: var(--textColor);
    border: 1px solid var(--textColor);
}

canvas {
    border: 1px solid var(--textColor);
}

svg {
    box-sizing: border-box;
}

h1 {
    font-size: 2.625rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

small {
    font-size: 0.8rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

a {
    color: var(--textColor);
    text-decoration: none;
}

ul li {
    list-style: none;
}

.noBottomMargin {
    margin-bottom: 0;
}

section#footer {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

section#footer ul {
    display: flex;
    gap: 30px;
}

section#footer ul a {
    text-decoration: underline;
}

/*###############################################################*/
/* Other important stuff */
/*###############################################################*/

.buttonHighlight {
    background-color: var(--primaryColor);
    border: 1px solid #000;
    color: #000;
    padding: 0.5rem 1rem;
    box-shadow: black 3px 3px;
    transition: ease-in-out 100ms;
    position: relative;
    top: 0;
    left: 0;
    font-weight: 500;
    cursor: pointer;
}

.rectPadding {
    padding: 1.5rem;
}

.buttonHighlight:hover {
    box-shadow: black 9px 9px;
    top: -3px;
    left: -3px;
}

.blog section {
    max-width: 800px;
    margin-bottom: 3rem;
}

.blog>section a {
    text-decoration: underline;
}

.blog ul li {
    list-style: square inside;
}


.blog section h2 {
    margin-top: 1rem;
    font-size: 1.75rem;
}

.blog section h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}
.importantP{
    border-left: 5px solid red;
    border-bottom: 2px solid red;
    padding: 0 5px;
}

section {
    max-width: 1520px;
    margin: 2rem auto 5rem auto;
    padding: 0 2rem;
}

section h2 {
    font-size: 2rem;
    font-weight: 600;
}

/* DATENSCHUTZ UND IMPRESSUM */
section#datenschutz h2,
section#impressum h2 {
    margin: 0;
    margin-bottom: 1rem;
}

section#datenschutz h3,
section#impressum h3 {
    margin: 0;
    font-weight: 400;
}

section#datenschutz p,
section#impressum p {
    margin-bottom: 1.5rem;
}

pre {
    border: 1px solid var(--textColor);
    padding: 1rem;
    margin-bottom: 1rem;
}

pre>code {
    font-weight: 500;
}

code {
    font-family: monospace;
    font-weight: 700;
}

footer {
    width: 100%;
    display: flex;
    align-items: center;
}

footer ul li {
    list-style: none !important;
}