body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #F8F3EC;
    color: #0e2143;
    height: 97vh;
    min-width: 335px;
}

.container {
    width: 100%;
    display: grid;
    height: 100%;
    grid-template-rows: 140px auto;
}

.header {
    width: 100%;
    display: grid;
    grid-template-columns: 6fr 5fr;
    align-items: center;
    grid-column-gap: 5px;
}

.title-style {
    display: grid;
    height: inherit;
    align-items: center;
    justify-content: center;
    grid-template-columns: 10fr 7fr;
}

.bold-style {
    font-size: 56px;
    font-weight: bold;
}

.highlight-container, .highlight {
    position: relative;
}

.greeting-container {
    font-size: 36px;
    padding-left: 5px;
}

.highlight-container {
    display: inline-block;
}

.highlight-container:before {
    content: " ";
    display: block;
    height: 60%;
    width: 220px;
    margin-left: -3px;
    margin-right: -3px;
    position: absolute;
    background: #B2C7F1;
    top: 20px;
    left: -20px;
    transform: rotate(3deg);
    border-radius: 12% 15% 8% 24%;
    padding: 5px 3px 3px 5px;
}

.menu-container {
    display: grid;
    height: inherit;
    align-items: center;
    justify-content: space-evenly;
    grid-template-columns: 1fr 1fr;
}

.menu-span-home {
    display: grid;
    height: inherit;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.menu-span-container {
    display: grid;
    height: inherit;
    justify-content: flex-start;
}

.menu-link {
}

.menu-link:hover {
    cursor: pointer;
    background-color: #B2C7F1;
}

.menu-link-title {
}

.menu-link-title:hover {
    cursor: pointer;
}

.content {
    display: grid;
    grid-template-columns: 1fr 4fr;
    width: 80%;
    align-items: center;
    justify-items: center;
}

.content-caption {
    display: grid;
    visibility: hidden;
    font-size: 48px;
    font-weight: bold;
    color: #2e76e6;
    height: 100%;
    width: 400%;
    align-items: center;
    justify-content: center;
}

.rotate {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}

.content-body-holder {
    display: grid;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.content-body {
    visibility: hidden;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.content-body-list {
    visibility: hidden;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-row-gap: 10px;
}

.content-body-list-header {
    display: grid;
    grid-row-gap: 10px;
    font-weight: bold;
    width: 100%;
}

.content-body-list-row {
    display: grid;
    grid-row-gap: 10px;
}


.rectangle {
    height: 20px;
    width: 8px;
}

.fill-rectangle {
    background-color: #2e76e6;
    border: 1px solid #2e76e6;
}

.empty-rectangle {
    border: 1px solid #2e76e6;
}

.level-indicator-container {
    display: grid;
    align-items: baseline;
    grid-template-columns: repeat(10, 15px);
}

.content-body-list-element {
    display: inline-block;
    align-items: center;
    justify-content: left;
}

.hidden {
    visibility: hidden;
}

.horizontal-center-align {
    display: grid;
    justify-content: center;
}

.vertical-center-align {
    display: grid;
    align-items: center;
}

.link-style {
    color: #2e76e6;
    text-decoration: none;
}

.link-style:hover{
    cursor: pointer;
}

.text-bold {
    font-weight: bold;
}

.padding-all {
    padding: 10px;
}


.footer {
    padding: 5px;
    display: grid;
    height: 30px;
    border-top: #2e76e6 ridge 4px;
    align-items: center;
    justify-content: center;
    grid-template-columns: 4fr 2fr;
}

.footer-element {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 3fr;
}

