/* body {background-color:#4bb6c9;} */
/* TO DO */
/* Put title to be the same on every web page and instead use color distinction on the links to mark which page is being viewed for a cleaner look*/

body {
    font-family: Courier, Georgia, serif;
    /* For A Background image that is centered and adapts pleasantly to screen size changes */
    background-image: url(images/w64_num3blur.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Applies border box model to entire page, fixing sus visuals*/
*, *::before, *::after {
  box-sizing: border-box;
}


.navBarFlexBox {
    min-width:fit-content;
    /* max-width: 70%; */
    height: 54px;
    /* Allows navBar to wrap for smaller screeens i.e. Phones*/
    /*    flex-wrap: wrap;*/
    display: flex;
    /* For Behind Home Image Link Bckground or NavBar*/
    background-color: #be7e05;
    border: 2px solid #696868;
    margin-right: 1%;
    
}

.homeButton {
    flex-grow: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    height: 48px;
}

.navBarButton {
    flex-grow: 1;
    flex-basis: auto;
    /* So About Me Doesnt text wrap*/
    flex-shrink: 0;
    background-color: #218321;
    border-style:solid;
    border-width: 1px;
    border-color: #aca2ac;
    color: #FFF1FF;
    font-size: 12.5pt;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    padding-left: 5px;
    padding-right: 5px;
}

a:link {
    /* So that there is no underline under links including nav bar buttons */
    text-decoration: none;
}


/*For When Hovering over links like in Nav Bar*/
a:hover {
    background-color: #1a410b;
    color: #FFFFFF
}

a.homeButton:hover {
    background-color: #5a3f06;
    color: #FFFFFF
}

.titleBar {
    position: relative;
    height: 50px;
    text-align: center;
    font-weight: bold;
    font-size: 15pt !important;
    color: #314131;
    width: 100%;
    background-color: #ffffff00;
}

.textBox {
    height: fit-content;
    width: 50%;
    flex-grow: 1;
    text-align: left;
    font-weight: bold;
    font-size: 9;
    color: #020202;

    background-color: #ffffff42;
}

.imgFlexbox {
    display: inline-flex;
    justify-content: center;
    width: fit-content%;
    max-height: 200px;
    background-color: #ffffff42;
    border: 2px solid #696868;

}
.imagesInFlex {
    width: auto;
    max-height: 200px;
    margin: 8px
}
