* {
	margin: 0;
	padding: 0;
}
/*Background color for main page*/
html{
    background-color: rgb(194, 241, 226);
    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%;
}
/*Puts padding on little message at bottom of page*/
.dont{
    padding: 4%;
}
/*Sets the rows as flexbox, which will contain columns*/
.row {
    display: flex;
    padding: 2%;
    border-top: 3px solid black;
}
/*Sets the columns so that each one is split equally side by side*/
.column {
    flex:1;
    width: 50%;
    padding: 2%;
    float:left;
}
/*Adjusts images so they fill their column but nothing more*/
.column img{
    max-width: 100%;
}
/*Adjusts size of small text in columns*/
.column p{
    padding-top: 8%;
    font-size: 175%;
}
/*Raises the font size of titles inside columns*/
.column h2{
    font-size: 200%;
}
/*Adjusts initial title and text to be larger and centered*/
.second{
    text-align: center;
}
.second p{
    font-size: 200%;
    padding: 2%;
}
/*This encompasses the form and the button at the bottom, gives it a border and aligns the items inside*/
.frog{
    text-align: center;
    border-bottom: 3px solid black;
}
/*Changes the flex direction to column so items are stacked on top of each other*/
.frog .row{
    flex-direction: column;
}
.frog .row h2{
    font-size: 300%;
}
/*Adjusts the video so it is not too big, and also centers it*/
.vid video{
    padding-top: 2%;
    max-width: 50%;
    display: block;
    margin: 0 auto;
}
.vid h2{
    font-size: 200%;
}
/*This makes the h2 inside vid and the video stack on top of each other*/
.vid .row{
    flex-direction: column;
}
/*This is how wide the input box on the form is*/
input{
    width: 15%;
}
/*This is inside the input box, and it makes the space larger and changes the background color*/
input[type=text] {
    padding: 1% 1.5%;
    margin: 1% 0;
    box-sizing: border-box;
    background-color:aliceblue;
  }
  /*Moves the form section down*/
  form{
    padding-top: 2.5%;
  }
  /*Does various adjustments on the button, which leads to the next page*/
  #btn5{
    background-color: white;
    border: 2px solid black;
    padding: 16px 32px;
    color: black;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 150%;
    cursor: pointer;
    transition-duration: .25s;
    /* margin-left: 58%; */
    margin-top: 2%;
    max-width: 50%;
    background-color: aliceblue;
}
/*Slightly changes the color when the button is hovered over*/
#btn5:hover{
    background-color: rgb(203, 228, 249);
}