/* Allgemeines */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Überschrift */
h1 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin: 20px 0;
}

/* Text */
p {
    font-size: 18px;
    color: #444;
    line-height: 1.5;
    margin: 20px 0;
}

/* Schaltflächen */
.button {
    display: block;
    width: 150px;
    height: 40px;
    background-color: #0066ff;
    color: #fff;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    margin: 20px auto;
    border-radius: 5px;
}
.button:hover {
    background-color: #003399;
}