html {
    height: 100%;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 50vh;
   

}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh; /* full viewport height, optional */
  padding: 20px;
}

.text {
  flex: 1; /* take available space on the left */
  padding-right: 20px;
}

.bioimage {
  width: 400px;  /* set the width of the image container */
  height: 500px; /* set the height */
  background-image: url('background1.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
}

header {
    display: flex;
    flex-direction: row;
    height: 30%;
    background-color: #000000;
    color: #fff;
    margin: 0;
    /* height: 100vh; */
    background-size: 20%;
    background-position: center;
    background-repeat: no-repeat;
    /* justify-content: space-around; */
    /* Horizontal centering */
    /*align-items: flex-start;
    /* Align to top */
    /*padding-top: 40px;
    /* Space from the top */
    
}


.site-header {
    /* display: flex; */
    /* Enable Flexbox */
    /* justify-content: space-around; */
    /* Pushes h1 left, nav right */
    align-items: center;
    /* Vertically align items */
    padding: 20px 40px;
    color: white;
}

#header-left-half {
    height: 100%;
    width:50%;
    align-content: center;
    justify-content: center;
}

#header-right-half {
    height: 100%;
    width:50%;
    align-content: center;
    justify-self: center;
}


.site-header h1 {
    margin: 0;
    font-size: 40px;
}

.site-header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 27px;
}
a{
  color:#9f4408;
 
}


main {
    height: 30%;
    padding: 0.5em;
    /* background: white; */
    font-size: 24px;
    margin: 1em;
    
}

footer {
    height: 75px;
    text-align: center;
    padding: 0%;
    margin-top: 0;
    align-content: center;
    /* position: relative; */
    /* bottom: 0; */
}