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

#alt_header {
    text-align: center;
    font-family: Sans-serif;
    display:none;
}

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

#info_1 {
    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_1 p {
    font-weight: 500;   
    margin-left: 10px; 
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Sans-serif;
    line-height: 1.4;
}

#sub_info_1 {
    display: flex;
}

#sub_info_1_image_section {
    flex: 1;
}

#image_1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    border-radius: 10px;
}

#sub_info_1_text_section {
    flex: 1;
    padding: 5px;
    /*margin-top: auto;*/
    /*margin-bottom: auto;*/
}


/*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_1 {
        width: 90%;
    }
    /*
    #image_1 {
        width: 80%;
    }
    */
}
/*when the screen width is 1000 -- the flex section starts to become hard to read*/
@media screen and (max-width: 1000px) {
    #sub_info_1 {
        display: block;
    }
    #sub_info_1_text_section {
        padding: 0px;
    }
    #sub_info_1_image_section {
        margin-bottom: 50px;
    }
    #image_1 {
        width: 60%;
    }
}
/*when the screen width is 950 - to match the common header change*/
@media screen and (max-width: 950px) {
    /*
    #alt_header {
        display: block;
    }
    */
    #main_header {
        display: none;
    }
}
/*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_1 {
        width: 95%;
    }
    /*
    #image_1 {
        width: 60%;
    }
    */
}
