.note_header {
    background-color: var(--theme_green);
    color: var(--theme_white);
    padding: 10px 20px;
    margin: 20px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
    border-radius: 5px 5px 0 0;
    font-weight: bolder;
}

.note_header a{
    font-weight: lighter;
    color: var(--theme_white);
}

.note_header .small_link input[type="submit"] {
    color: var(--theme_white);
}

.note_box {
    background-color: var(--theme_gray_light);
    border: 1px solid var(--theme_gray);
    padding: 10px 20px;
    margin: 0;
    border-radius: 0 0 5px 5px;
}

.note_box h1 {
    font-size: 2rem;
}

.note_box h2 {
    font-size: 1.75rem;
}

.note_box h3 {
    font-size: 1.5rem;
}

.note_box h4 {
    font-size: 1.25rem;
}

.note_box h5 {
    font-size: 1rem;
}

.note_box h6 {
    font-size: 1rem;
}

.note_box p {
    font-size: .9rem;
    margin: 20px 0;
    line-height: 1.75;
}