* {
	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%;
}
.outer h1{
    font-size: 300%;
    padding-top: 2%;
    padding-bottom: 2%;
    font-family: serif;
}
/*Adjusts paragraph so it can be seen better*/
.outer p{
    font-size: 200%;
    padding: 3%;
}
/*This row is a flexbox that only holds the image*/
.row {
    display: flex;
    padding: 2%;
    flex-direction: column;
}
/*Centers the peter gif and resizes it*/
.row img{
    max-width: 80%;
    display: block;
    margin: 0 auto;
}
/*Does various adjustments on the button, which leads to the next page*/
#btn1{
    background-color: white;
    border: 2px solid black;
    padding: 16px 32px;
    color: black;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 250%;
    cursor: pointer;
    transition-duration: .25s;
    margin-bottom: 3%;
    margin-top: .5%;
    border-radius: 100%;
}
/*Slightly changes the color when the button is hovered over*/
#btn1:hover{
    background-color: rgb(219, 243, 236);
}