body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.nutrition-label {
    max-width: 400px;
    /* margin: 20px auto; */
    /* border: 1px solid #000; */
    padding: 20px;
    background-color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.serving-size {
    font-size: 0.9em;
}

.line {
    border-top: 1px solid #000;
    margin: 10px 0;
}

.thick-line {
    border-top: 5px solid #000;
    margin: 10px 0;
}

.nutrition-facts {
    display: flex;
    flex-direction: column;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.label {
    font-size: 1em;
}

.value {
    font-size: 1em;
}

.large {
    font-size: 1.5em;
    font-weight: bold;
}

.medium {
    font-size: 1.0em;
    font-weight: bold;
}

.percent-daily-values {
    margin-top: 10px;
    font-size: 0.8em;
}

.daily-value {
    display: flex;
    justify-content: right;
}