@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@1&display=swap');



section {
    margin: 2em auto;
    padding: 1em;
    background-color: burlywood;
    border-radius: 8px;
    box-shadow: black 0 0 10px;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

section img {
    max-width: 200px;
}

body {
    font-family: "DM Serif Display", serif;
    margin: 0;
    padding: 0;
    background-color: wheat; 
}


h1 {
    text-align: center;
    margin-bottom: 1em;
    color: brown;
}

.chat {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    margin: 0.5em 0;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 50%;
}

button {
    margin: 1em 0;
    padding: 0.5em;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: darkgray;

}

input:focus, textarea:focus {
    background-color: rosybrown;
}



button:hover {
    background-color: darkgray;
}

textarea, input {
    margin: 0.5em 0;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 90%;
}

.scroll-to-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    background-color: #D2B48C;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
    z-index: 999;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
}

.scroll-to-bottom:hover {
    background-color: #B8860B;
}



/* Berichten.php  */



/* .bericht-section {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
} */

/* .bericht-section h1 {
    font-size: 18px;
    margin: 0;
}

.bericht-section h2 {
    font-size: 16px;
    margin: 5px 0;
}

.bericht-section h3 {
    font-size: 14px;
    color: #888;
    margin: 5px 0;
}

.bericht-section img {
    max-width: 100%;
    height: 100px; 
    width: 100px; 
    margin-top: 10px;
} */

