:root {
    --red: rgb(127, 32, 19);
    --lightred: rgb(171, 45, 29);
    --besch: rgb(236, 230, 211);
    --whitesmoke: whitesmoke;
}

.relative {
    position: relative;
}

body {
    margin: 0;
    background-color: var(--besch);
    font-family: Arial;
    width: 100%;
}
p {
    margin-top: 0;
    margin-bottom: 0;
}
.section-banner {
    height: 10px;
    width: 100%;
    left: 0;
    --outer-color: rgb(202, 48, 48);
    background: linear-gradient(90deg, var(--red) 0%, var( --outer-color) 50%, var(--red) 100%);
}