﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px 0;
    font-size: 24px;
    color: #fff;
    background-color: #b8b09c; /* Greige Farbe */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 100%; /* Buttons in gleicher Breite */
    max-width: 300px; /* Maximale Breite der Buttons */
}

.btn:hover {
    background-color: #9f9682;
}
