/* style.css */

.underline-text {
    text-decoration: underline;
    font-weight: normal; /* sicherstellen, dass es nicht fett dargestellt wird */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.naehrwertzutaten {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h5 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

u {
    font-weight: bold;
    font-size: 16px;
}

span {
    display: block;
    padding-left: 20px;
}

.zucker-info {
    padding-left: 20px;
}

.fett-info {
    padding-left: 20px;
}


/* Responsive Anpassungen */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
}

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

/* Styling für den Body */
index-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Styling für die Container */
index-container {
    max-width: 600px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styling für die Überschriften */
index-h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

/* Styling für die Absätze */
index-p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

/* Styling für die Links */
index-a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

index-a:hover {
    text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    index-h1 {
        font-size: 2em;
    }

    index-p {
        font-size: 1em;
    }
}

