
.flex {
    display: flex;
    flex-wrap: wrap;
}


.flex-col {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

.flex-equal {
    justify-content: space-between;
}

.image {
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.image img {
    border: 5px solid white;
}

.image-top {
    margin-bottom: -6px;
}

.main {
    /*margin-top: 50px;*/
    padding: 20px 5% 20px 5%;
    height: 70%;
    background-color: rgb(168, 191, 225);
}

.circled {
    width: 300px;
    height: 300px;
    border: 30px solid white;
    font-size: 1.6em;
    color: white;
    padding: 20px;
    margin: 20px auto;
    text-align: center;

    position: relative;
    z-index: 2;
}

.circled-small {
    font-size: 1.2em !important;
}

.circled * {
    width: 100%;
}

.halfway-button-container {
    position: relative;
    padding-left: 90px !important;
    margin-bottom: 0;
}

.bar-container {
    position: relative;
}

.bar {
    position: absolute;
    top: -50%;
    width: 10px;
    height: 100%;
    left: calc(50% - 5px);
    background-color: white;
    z-index: 0;
}

.description {
    color: white;
    font-size: 1.2em;
}

.description p {
    margin: 5px 0;
    width: 100%;
}


.description > p > a {
    padding: 10px;
    margin: 5px auto;
    color: white;
    width: 80%;
    border: solid white 3px;
    border-radius: 5px;
    text-align: center;
    display: block;
}

.description > p em {
    /*color: rgb(67, 85, 144);*/
    font-weight: bold;
    font-style: initial;
}

.tabular {
    font-family: monospace;
}

@media only screen and (max-width: 992px) {
    .halfway-button-container {
        margin-top: 50px;
    }
}