.container {
    display: flex;
    margin-bottom: var(--mud-appbar-height);
    margin-right: auto;
    margin-left: auto;
    min-height: calc(100vh - (2 * var(--mud-appbar-height)));
    width: 100vw;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 250px;
}

.fill-width {
    width: 100vw;
    height: auto;
}

.fill-height {
    width: auto;
    height: calc(100vh - var(--mud-appbar-height));
}


.content {
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-grow: 1;
    min-height: auto;
    overflow-y: hidden;
}

.content-nogrow {
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: auto;
    overflow-y: hidden;
}

.center {
    align-items: center;
    justify-content: center;
}

.center-between {
    align-items: center;
    justify-content: space-between;
}

.top-center {
    align-items: flex-start;
    justify-content: center;
}

.top-between {
    align-items: flex-start;
    justify-content: space-between;
}

.start-left {
    justify-content: flex-start;
}

.text {
    font-size: 1.75em;
}

.title {
    font-size: 3.5em;
}

.subtitle {
    font-size: 2em;
}

.greysection {
    background-color: #d0cebc;
    color: #004363;
}

a {
    font-size: 1em;
}

p {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}


