body {
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    padding-left: 40px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo img{
    width: 210px;
}
.header_title {
    text-align: center;
    display: flexbox;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 0px;
}
.header_title h1 {
    color: white;
    font-size: 2em;
    margin: 0;
}
.header_end {
    height: 50px;
}
main {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 20px;
    color: rgb(255, 255, 255);
}
.main_website {
    text-align: center;
    margin-top: 20px;
    background-color: rgba(255, 0, 0, 0.5);
    padding: 10px;
}
.info_red {
    background-color: rgba(77, 126, 75);
    padding: 10px;
    margin-top: 20px;
}
.red_bolt {
    color: red;
    font-weight: bold;
    
}
.cloud_link {
    color: rgba(255, 255, 255, 0.897);
    font-weight: bold;
}
a {
    color: white;
    text-decoration: none;
    font-style: italic;
    text-decoration: underline;
}
h1 {
color: white;
margin-top: 20px;
}
h2 {
    color: white;
    margin-top: 18px;
}
h3 {
    color: white;
    margin-top: 15px;
}
h4 {
    color: white;
    margin-top: 12px;
}
/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
    .header_title {
        display: none; /* Versteckt den Titel auf kleinen Bildschirmen */
    }
}