@media screen and (max-width: 394px) {
    .container {
        grid-template-rows: 150px auto;
    }

    .header {
        height: auto;
        grid-template-columns: 2fr 3fr;
        justify-items: flex-end;
    }

    .title-style {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .bold-style {
        font-size: 36px;
    }

    .greeting-container {
        font-size: 22px;
    }

    .highlight-container:before {
        top: 12px;
        left: -5px;
        width: 135px;
    }

    .menu-container {
        display: grid;
        padding-left: unset;
        grid-row-gap: 10px;
        align-items: center;
        justify-content: space-evenly;
        grid-template-columns: 1fr;
    }

    .menu-span-container {
        font-size: 10px;
        height: auto;
        display: inline-grid;
        word-break: break-word;
        padding: 10px;
    }

  .content {
    width: 100%;
    grid-template-columns: 40px auto;
  }

  .content-caption {
        font-size: 18px;
        width: 600%;
    }

    .content-body-holder {
        font-size: 12px;
    }

    .content-body-list-row {
        align-items: center;
        font-size: 12px;
        grid-column-gap: 10px;
    }

    .rectangle {
        height: 10px;
        width: 2px;
    }

    .horizontal-center-align {
        text-align: center;
    }

    .level-indicator-container {
        grid-template-columns: repeat(10, 7px);
    }

    .link-style {
        word-wrap: anywhere;
    }

    .content-body-list-header {
        grid-column-gap: 10px;
    }
}