header {
    background-color: #a99c9c;
    padding: 20px;
    text-align: center;
    border-color: rgb(161, 151, 139);
    border-width: 5px;
    border-style: solid;
    position: relative;
    border-radius: 10px;
}
body {
    background-color: #c4bcbc;
    font-family: Arial, sans-serif;
    margin:0px;
    padding :20px;
}

.logo {
    float: left;
    margin-right: -50px;
    padding: 10px;

}

/* Style vom Titel im Header */
#content2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

/* Style von den Bottons an sich im Header */
#button1, #button2, #button3, #button4 {
    background-color: #0b66c6;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0px;
    cursor: pointer;
    border-radius: 5px;
}

/* Style vom Hovern über die Buttons im Header */
#button1:hover, #button2:hover, #button3:hover, #button4:hover {
    background-color: #0b66c6;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0px;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.8;
}

/* Style vom Titel im Body */
#content3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Style vom normalen Text im Body */
#content4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    text-align: center;
}
/* Positionierung des Gewitterbilds */
#content5 {
    text-align: center;
}
/* Style vom Trennstrich */
hr {
    border: 2px solid #000;
    margin: 10px 0;
}
/* Style von dem Inhalt im Body */
#content6 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}
/* Style von den Social Media Icons */
#content7 {
    text-align: center;
    margin-top: 20px;
    border-radius: 25px;
    cursor: pointer;
    opacity: 0.8;
}
/* Style vom Hovern über die Social Media Icons */
#content7:hover {
    text-align: center;
    margin-top: 20px;
    border-radius: 25px;
    cursor: pointer;
    opacity: 1;
}
/* Style vom Footer */
footer {
    padding: 25px;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
}
/*Style der Buttons im Footer*/
#button5, #button6, #button7 {
    background-color: #4a4c4f;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0px;
    cursor: pointer;
    border-radius: 5px;
}
#loginButton {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #2f2f2f;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
    border-radius: 5px;
}
#loginButton:hover {
    background: #444;
}
.wetterbild {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
}

/* =========================
   HANDY OPTIMIERUNG
========================= */

@media (max-width: 600px) {

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 6px;
}

header button {
    width: 45%;
    max-width: 170px;
    padding: 6px;
    font-size: 12px;
    margin: 0;
}

.logo {
    display: none;
}

#content2{
    width: 100%;
    text-align: center;
    margin: 0px;
}
#loginButton {
    display: none;
}
.wetterbild {
    max-width: 85%;
}

}
    
