/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundlayout */
body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
.header_top {
    background-color: rgb(0, 0, 0);
    padding: 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_line {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, black 0%, black 40%, greenyellow 50%, black 60%, black 100%);
    box-shadow: 0 0 6px greenyellow;
}
.Marchner_Logos {
    display: flex;
    align-items: center;
    gap: 20px;
  
}

.Marchner_Logos img {
    height: clamp(40px, 5vw, 65px);
    width: auto;
    object-fit: contain;
}

/* MAIN */
main {
    flex: 1;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

/* FOOTER */
footer {
    background-color: rgb(0, 0, 0);
    padding: 16px 32px;
    min-height: 96px;
    display: flex;
    align-items: center;
    color: white;
}

h1 {
    color: white;
}

a{
    text-decoration: none;
    color: white;

}
a:hover{
    color: greenyellow;
}

@media (max-width: 500px) {
    .header_top {
        flex-direction: column;
        align-items: center;
    }

    .Marchner_Logos {
        flex-direction: column;
        gap: 10px;
        margin-left: 0; 
    }

    main {
        align-items: center; 
        text-align: center;   
    }
}