.information {
    flex: 10 1 70%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.information-item {
    background-color: lightgrey;
    border: 2px solid black;
    border-radius: 10px;
    padding: 16px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.information-title {
    font-size: 24px;
    font-weight: bold;
}

.information-subtitle {
    font-size: 20px;
    font-weight: bold;
}

.information-subsubtitle {
    font-size: 18px;
    font-weight: bold;
}

.information-list ul {
    list-style-type: disc;
}

.information img {
    max-width: 100%;
}

.information-source {
    align-self: flex-end;
    font-size: 12px;
}