body {
    font-family: sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center; 
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.content-section {
    width: 100%;
    margin-bottom: 20px;
    text-align: center; /*zentriert die div elemente mit inhalt */
    border-top: 1px solid #eee;
    padding-top: 20px;
}

main p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

main h1 {
  text-align: center;
}

main h2 {
    margin-top: 0;
    font-weight: normal;
}

img {
    width: 100%; 
    height: auto; 
    display: block; 
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.button:hover {
    filter: brightness(90%);
}

.button-whatsapp {
    background-color: #25d366;
}

.button-telegram {
    background-color: #0088cc;
}

.button-other {
    background-color: grey;
}