.row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: center;
}
/* Fixed-width columns */
.col-fixed {
    flex: 0 0 auto; /* Prevent growing or shrinking */
}
/* Flexible-width children */
.col-fill {
    flex: 1 1 auto; /* Allow to grow and shrink, taking available space */
}
.col-1 { width: calc(1 / 12 * 100%); }
.col-2 { width: calc(2 / 12 * 100%); }
.col-3 { width: calc(3 / 12 * 100%); }
.col-4 { width: calc(4 / 12 * 100%); }
.col-5 { width: calc(5 / 12 * 100%); }
.col-6 { width: calc(6 / 12 * 100%); }
.col-7 { width: calc(7 / 12 * 100%); }
.col-8 { width: calc(8 / 12 * 100%); }
.col-9 { width: calc(9 / 12 * 100%); }
.col-10 { width: calc(10 / 12 * 100%); }
.col-11 { width: calc(11 / 12 * 100%); }


.large-text {
    font-size: large;
}
.x-large-text {
    font-size: 5rem;
}

.hiddenStuff {
    display: none;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.centeredText {
    text-align: center;
}

.rightText {
    text-align: right;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}
