/*********************************************
 * style.css
 * Stylesheet, eingebunden in index.html (Subscribe Button)
 *********************************************/

body {
    font-family: sans-serif;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    padding: 20px;
    text-align: center;
}

main{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.container {
    background-color: #fff;
    margin: 20px;
    padding: 30px;
    border-radius:15px;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        width: 90vw;
    }
}

/* Buttons */

button, input[type="submit"] {
    padding: 10px 20px;
    border: none;
    background-color: #0000ff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

button:hover, input[type="submit"]:hover {
    background-color: #003670;
}

/* Notification Status */

#notificationStatus {
    margin-top: 20px;
    font-weight: bold;
}

/* Textfeld */

input[type="text"] {
    width: 90%;
    height: 20px;
    border-radius: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
}