.tags {
    display: flex;
    background: white;
    justify-content: space-around;
}
.siteHeader {
    height: 50px; 
    margin-left: 1px; 
}
.types {
    display: flex;
    background: white;
    justify-content: space-around;
    height: 100px; 
    position: relative;
}
.type {
    outline: none;
    border: white;
    background-color: white;
    color: black;
    font-size: 20px; 
    cursor: pointer
    font-family: Arial, Helvetica, sans-serif
}
.type:hover {
    text-decoration: underline;
    text-decoration-color: rgb(92, 159, 204);
}
.firstName {
    color: rgb(92, 159, 204);
    font-size: 36px;
    font-family: Arial, Helvetica, sans-serif
}
.lastName {
    color: black;
    font-size: 36px; 
    font-family: Arial, Helvetica, sans-serif
}
.about {
    outline: none;
    background: white;
    color: black;
    border: white;
    font-size: 20px; 
    float: right;
    font-family: Arial, Helvetica, sans-serif;
}
.about:hover {
    text-decoration: underline;
    text-decoration-color: rgb(92, 159, 204);
}
.bioRefs {
    color: black;
    font-size: 18px; 
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.bioRefs:hover {
    text-decoration: underline;
    text-decoration-color: rgb(92, 159, 204);
}
#bio {
    height: 300px;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
    gap: 15px;
}
#bioImage {
    height: 90%;
    width: 25%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-evenly;
}
#bioDescription {
    height: 90%;
    width: 50%;
    font-size: 13px;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: 30px;
    line-height: 20pt;
}
#bioLinks {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
}
.headshot {
    max-height: 200px;
    max-width: 200px;
}
.headshot img {
    margin-top: 8px;
    vertical-align: middle;
}
.row {
    display: -ms-flexbox; /* IE 10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE 10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

.column {
    -ms-flex: 50%; /* IE 10 */
    flex: 50%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

@media only screen and (max-width: 1000px) {
    #container {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 50px;
        line-height: 2;
        display: flex;
        flex-direction: column;
        font-size: x-large;
        gap: 25px;
        font-family: serif;
    }
}

@media only screen and (min-width: 1000px) {
    #container {
        margin-left: 30%;
        margin-right: 30%;
        margin-top: 50px;
        line-height: 2;
        display: flex;
        flex-direction: column;
        gap: 25px;
        font-family: serif;
    }
}