/* ================================================================= */
/*                          Allgemeine Stile                         */
/* ================================================================= */
@import url('../css/variables.css');

/* ==================== Grundstruktur ==================== */
.is-body {
    color: white;
    margin: 0;
    padding: 0;
}

/* ==================== Header ==================== */
.is-header {
    background-color: var(--logo-color);
    text-align: center;
    padding: 30px;
}

.is-title {
    font-size: 2rem;
    font-weight: bold;
}

/* ==================== Hauptbereich ==================== */
.is-main {
    max-width: 100rem;
    margin: 0 auto;
    padding: 2rem;
}

.is-section {
    margin-bottom: 20px;
}

/* ==================== Abschnittstitel ==================== */
.is-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
}

/* ==================== Textstil ==================== */
.is-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.is-text a {
    color: #007bff; /* Link-Farbe */
    text-decoration: none;
}

.is-text a:hover {
    color: #0056b3; /* Farbe beim Hover */
}