:root{
    --BG: #ECE3D6;
    --HBG: #BF2A30;
    --TextColor: #000000;
}

strong {
    font-size: x-large;
    color: var(--TextColor);
}

h1 {
    color:var(--BG);
}

a {
    text-decoration: none;
}

body {
    background-color: var(--BG);
    margin:0;
    padding:0;
}

header {
    background-color: var(--HBG);
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 10vh;
    display: flex;
    align-items: center;
}

.Logo {
    height: 7vh;
    width: auto;
    aspect-ratio: 1 / 1;
    margin-left: 0.75%;
    background-color: var(--BG);
    mask: url(Bilder/KGL.png) no-repeat center / contain;
    -webkit-mask: url(Bilder/KGL.png) no-repeat center / contain;
}


.Logo:hover{
    transform: translate(0, -5px);
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom:1%;
    margin-top: 10vh;
    gap:5vh;
    margin-left:7%;
}

main img{
    margin-right:25%;
    width: 50%;
    height: auto;
}

.Container{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    gap:5%;
    margin-top:6%;
}

.button{
    position: absolute;
    top:0;
    background-color: var(--HBG);
    padding: 25% 6% 2% 6%;
    margin-right: 5%;
}

.button h1:hover{
    transform: translate(0, -5px);
}

.HT{
    position:absolute;
    bottom:0;
    background-image: url(Bilder/Halftone.svg);
    width: 100%;
    height: auto;
    padding-top:135px;
    background-repeat: repeat-x;
    background-size: 150px 150px;
}

footer{
    position:absolute;
    bottom:0;
    width: 100%;
    background-color: #000000;
    padding:7px;
}

.Dude{
    position: absolute;
    top:50%;
    left:50%;
    width: 300px;
    height: auto;
}