body {
    background-color: var(--page_background_darker);
}

#content {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    background-color: var(--page_background);
    border-width: 3px;
    border-style: solid;
    border-color: var(--page_background);
    border-radius: 10px;
}

#info_section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    /*background-color: #5b5ca425;*/
    margin-top: 10px;
    margin-bottom: 10px;
    border-style: solid;
    border-color: var(--page_background);
    border-radius: 10px;
}

#info_section p {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Sans-serif;
    line-height: 1.4;
}

.flex_section {
    display: flex;
}

.flex_section p {
    font-family: Sans-serif;
    line-height: 1.4;
}

.flex_segment {
    flex: 1;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
.flex_segment_alt {
    flex: 12;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*media queries for responsive display*/
/*when the screen width is 1280 -- a small desktop resolution where the navigation bar is still usable in its default form*/
@media screen and (max-width: 1280px) {
    #content {
        width: 95%;
    }
    #info_section {
        width: 90%;
    }
}
/*when the screen width is 800 -- mobile device width where the navigation bar is no longer usable in its default form*/
@media screen and (max-width: 800px) {
    #content {
        width: 99%;
    }
    #info_section {
        width: 95%;
    }
}

