/* Allgemeine Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #FFC78F;
    color: #333;
    line-height: 1.6;
}

/* Kopfbereich */
header {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Hauptinhalt */
main {
    padding: 20px;
}

/* Standard-Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Fußbereich */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

.container {
    position: relative;
}
body {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertikal */
    height: 100vh;           /* volle Bildschirmhöhe */
    text-align: center;
}

h1 {
    font-size: 90px;
}
img {
    position: absolute;
    top: 5px;
    left: 5px;
}

/* Beispiel-Button */
.btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #004999;
}
.box {
    border: 6px outset #FFA44C;
    background: #FFF4E6;
    padding: 5px;
    width: 175px;
    border-radius: 8px;
}
