/* content is centered vertically and horizontally */

.homePage {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 3vw 5vw 1vw;
    background-color: var(--background-color1-semitr);
    min-height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.homePage h1 {
    color: var(--text-color);
    font-family: EverettL;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 2rem 0rem;
    cursor: default;
}
.homePage img {
    display:flex;
    flex-direction: row;
    justify-content: center;
    height: 50px;
    margin-bottom: 2rem;
}

.homePage .navigationMenu {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
}

.homePage .navigationMenu .navigationMenuItem Button {
    height: 10rem;
    width: 10rem;
    background: var(--background-color3);
    color: var(--text-color);
    border-radius: var(--border-radius);
    border:1px solid var(--faded-border-color);
    font-family: EverettL;
    font-size: var(--label-font-size-small);
    cursor: pointer;
    margin: 1rem 1rem;
    transition: all 0.2s ease-in-out;
}

.homePage .navigationMenu .navigationMenuItem Button:hover {
    background: var(--linear-gradient1);
    border: 1px solid var(--border-mm-color);
    color: white
}
