/* Datei: css/style-stylish.css */
body {
    background: linear-gradient(to right, #f7f7f7, #e3f2fd);
    color: #2c3e50;
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 20px;
}
h1, h2, h3 {
    color: #34495e;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 5px;
}
a {
    color: #2980b9;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
button {
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
button:hover {
    background-color: #1c5980;
    transform: translateY(-2px);
}
