body{
  background-color: #208ebf;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  color:white;
}
*{
  font-weight: lighter;
}
li{
  font-size: 1.2em;
}
.banner{
  background-color: #2BA1D6;
  width:100%;
  height: 70%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo{
  text-align:center;
}
.logoText{
  font-size: 7.2vh;
  color:white;
  font-weight: 50;
}
.content{
  margin: 10px;
  text-align: center;
}
.fadeIn{
  animation: fadeIn 1s;
}
@keyframes fadeIn {
   0% {opacity: 0;}
   100% {opacity: 1;}
}
/* Copied from https://css-tricks.com/snippets/css/css-triangle/*/
.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #2BA1D6;
  position:relative;left:-50%;
}
/* Copied from https://css-tricks.com/snippets/css/css-triangle/*/

/* Copied from https://www.w3schools.com/howto/howto_js_topnav.asp */
/* Add a black background color to the top navigation */
.topnav {
    position: absolute;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 300;
}

.btn {
    background-color: #208ebf;
    color: white;
    border: hidden;
    font-family: 'Roboto', sans-serif;
    cursor:pointer;
}

.btn:hover {
    background-color: #28b0ed;
}
/* Change the color of links on hover */
.topnav a:hover {
    background-color: #28b0ed;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #208ebf;
    color: white;
}
/* Copied from https://www.w3schools.com/howto/howto_js_topnav.asp */
