body {
    margin: 0;
    color: black;
    user-select: none;
}

.flexbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
    min-height: 24em;
}

.flexbox-item {
    max-width: 50%;
}

.fixed {
    flex: none;
    max-width: 50%;
}

.centerofpage {
    width: 100%;
    padding: 1em;
    text-align: center;
}

p{
    padding-top: 1em;
    font-size: 10pt;
    user-select: none;
}

o{
    padding:10px;
    color:#f8b332;
    font-weight:bold;
    background:black;
    border-radius:5px 0px 0px 5px;
}

b{
    padding:10px;
    font-weight:bold;
    color:black;
    background:#f8b332;
    border-radius:0px 5px 5px 0px;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.state-name{
    padding: 0.25em;
    margin: 0.25em 0;
    font-size: 14pt;
    font-family: monospace;
    font-weight: bold;
    color: #8f8f8f;
}