* {
	margin: 0;
	padding: 0;
}
/*Background color for main page*/
html{
    background-color: rgb(194, 241, 226);
    font-family: sans-serif;
}
/*Changes title font*/
#topH{
    font-family: sans-serif;
}
/*Adjusts logo inside navbar on the left*/
#logo{
    cursor: pointer;
    padding-left: 10px;
    float: left;
}
/*Organizes the navbar using flexbox*/
#navbar{
    padding: 10px 0;
    display: flex;
    align-items: center;
    background-color: rgb(137, 238, 204);
    border-bottom: 3px solid black;
}
/*Current is different on each html page, and bolds the tab the user is on*/
#navbar ul li a.current{
    text-decoration: underline;
    font-weight: bold;
}
/*Adjusts the different tabs user can click on*/
#navbar ul li a{
    text-decoration: none;
    list-style: none;
    color: black;
    font-size: 175%;
    padding-left: 45px;
}
/*Organizes different tabs so they are side by side*/
#navbar ul li{
    list-style: none;
    display: inline-block;
    position: relative;
  }
#navbar ul{
    list-style-type: none;
}
/*Puts shadow on tab words when the user hovers over them*/
#navbar ul li a:hover{
    text-shadow: 2px 2px white;
}
/*Outer is what holds the main items, puts a border around it and centers it*/
.outer{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    border-left: 3px solid black;
    border-right: 3px solid black;
    border-bottom: 3px solid black;
    margin-bottom: 2%;
}
/*Adjusts main header*/
.outer h1{
    font-size: 300%;
    padding-top: 2%;
    padding-bottom: 2%;
    font-family: serif;
}
/*Sets the rows as flexbox, which will contain columns*/
.row {
    display: flex;
    padding: 2%;
}
/*Sets the columns so that each one is split equally side by side*/
.column {
    flex:1;
    width: 50%;
    padding: 2%;
    float:left;
}
/*Adjusts size of people's images*/
.column img{
    max-width: 50%;
}
/*Makes the member testimony writing bigger and centers them with padding*/
.column p{
    padding-top: 15%;
    font-size: 175%;
}