body{
  background-color: #ffffff;
  margin: 0px;
  padding:0px;
}
.navigation{
  box-sizing: border-box;
  background-color: #ADD8E6;
  border-bottom: 1px solid #dddddd;
  left: 0px;
  overflow-y: auto;
  padding:20px;
  position: fixed;
  text-align: center;
  top: 0px;
  width: 100%;
  z-index: 999;
}

.nav-link  {
  text-decoration: none;
}

.nav-link:hover  {
  color: #4B0082;
}

.nav-link:active  {
  color: #9370DB;
}

ul{
  margin: 0px;
  padding: 0px;
}

.navigation a{
  color: #736B92;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 10px 40px;
  text-transform: uppercase;
}
a.logo{
  color: #2176FF;
  font-family: 'Amatic SC',sans-serif;
  font-size: 34px;
  padding: 0px 60px;
  text-align: center;
  text-transform: uppercase;
}
.banner{
  background-image: url("https://images.unsplash.com/photo-1418290232843-5d7a0bd93f7d?dpr=1&auto=format&crop=entropy&fit=crop&w=1500&h=1001&q=80&cs=tinysrgb");
  background-position: center top;
  background-size: cover;
  border-bottom: 1px solid #dddddd;
  height: 700px;
  position: relative;
  text-align: center;
  top: 100px;
  width: 100%;
}
.banner-text{
  position: relative;
  top: 200px;
}
h1{
  color: #ffffff;
  font-family: 'Raleway',sans-serif;
  font-size: 60px;
  font-weight: 100;
  letter-spacing: 2px;
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
}
h2{
  color: #2176FF;
  font-family: 'Amatic SC',sans-serif;
  font-size: 45px;
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
}
.banner h2{
  font-size: 120px;
  margin: -40px 0px 80px 0px;
}
.content{
  background-image: url('https://content.codecademy.com/courses/learn-links-and-buttons/project/mountain1.jpg');
  background-position: center top;
  background-size: cover;
  border-bottom: 1px solid #eeeeee;
  margin: 0 auto;
  overflow-y: auto;
  padding: 80px 0px;
  position: relative;
  text-align: center;
}

.btn  {
  cursor: pointer;
  background-color: #6495ED;
  border: 1px solid navy;
  border-radius: 5px;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn:hover  {
  cursor: pointer;
}

.btn:active  {
  color: purple;
  background-color: grey;
  font-size: 500;
  border-color: purple;   
}

p{
  color: #000000;
  font-family: 'Raleway',sans-serif;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
}

.description{
  display: inline-block;
  width: 70%;
}
.activities-panel{
  margin-bottom: 40px;
  padding: 80px 0px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.activities-panel h2 {
  width: 100%;
}
.activity{
  background-color: #ADD8E6;
  box-sizing: border-box;
  border-radius: 10px;
  width: 300px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00008B;
  font-family: 'Amatic SC',sans-serif;
  font-size: 35px;
  text-align: center;
  text-transform: uppercase;
  margin: 15px;
  box-shadow: 0px 4px;
}

.activity:hover  {
  cursor: pointer;
}

.activity:active  {
  margin-top: 5px;
  color: #9370DB;
  box-shadow: 0px 0px;
}

.footer{
  background-color: #ADD8E6;
  padding: 30px;
  text-align: center;
}
.footer h2{
  color: #00008B;
  font-family: 'Raleway',sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

a  {
  color: blue;
}

a:hover{
  cursor: pointer;
  text-decoration: none;
  color: #4B0082;
}