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_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;
    display: block;
}

#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;
}

#info_1 a {
    display: block;
    font-weight: 500;   
    margin-left: 10px; 
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Sans-serif;
    line-height: 1.4;
}

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

#split_section {
    display: flex;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 20px;
}

#split_section_A {
    flex: 1;
}

#split_section_B {
    flex: 1;
}

.flex_section {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
.flex_section_A {
    flex: 1;
    padding: 10px;
    border-right: 1px solid black;
}
.flex_section_B {
    flex: 1;
    padding: 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_1 {
        width: 90%;
    }
    #image_1 {
        width: 70%;
    }
}
/* below 1000px in width, the flex section starts to become unreadable*/
@media screen and (max-width: 1000px) {
    .flex_section {
        display: block;
    }
    .flex_section_A {
        border: none;
        padding: 0;
    }
    .flex_section_B {
        padding: 0;
    }
}

/*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: 40%;
    }
}
