.button {
    background-color: black;
    color: white;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    border: 7px solid black;
    width: max-content;
    margin-bottom: 4%;
    transition: 400ms;
}

.button:hover {
    background-color:#c1ff72;
    color: black;
}

.container_content,
.container  {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
    padding-top: 0;
    flex: 1;
}

.container_content{
    margin-left: 3%;
    margin-right: 3%;
}

.container_horizontal {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    margin-left: 0;
}

@media only screen and (min-width: 600px) {
    .container_horizontal {
 	   margin-left: 0;
 	   margin-right: 0;
 	   margin-top: 0;
 	   display: flex;
 	   flex-direction: row;
 	   justify-content: flex-start;
 	   padding-top: 0;
    }   
}

.max_container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 600px) {
    .max_container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 0;
    padding-bottom: 0;
}
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.right_header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 0;
}

.logo {
    max-width: 150px;
    height: auto;
    position: relative;
    filter: brightness(0%);
    border-bottom: 7px solid black;
    display: block;
}

.news-ticker {
    width: 100%;
    background-color: #c1ff72;
    color: white;
    font-family: "Roboto-Bold-Condensed";
    font-size: 1em;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000; 
    overflow: hidden;
    margin: 0;      /* Verhindert unerwünschte Abstände */
    padding: 0.5%;
    box-sizing: border-box;    /* Verhindert Innenabstände */
}

.news-ticker p {
    display: inline-block;
    white-space: nowrap;
    margin: 0;      /* Verhindert Margin, der Text könnte einen Abstand erzeugen */
    padding: 0;     /* Verhindert Padding, der Text könnte einen Abstand erzeugen */
    line-height: 1; /* Setzt die Zeilenhöhe auf 1, um unnötigen Abstand zu verhindern */
    animation: ticker 20s linear infinite;
    min-width: 100%;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
