*{
  margin: 0;
  padding: 0;
}
body{
  background-color: #fff;
}
nav {
  background: #404E5C;
  height: 70px;
  background-size: cover;
  position: sticky;
  top: 0;
}
ul{
  float: right;
  list-style-type: none;
  margin-top: 20px;
}
ul li{
  display: inline-block;
}
ul li a{
  text-decoration: none;
  color: #9CA7B1;
  font-family: 'Raleway', sans-serif;
  padding: 5px 20px;
  border: solid 1px transparent;
  border-radius: 10px;
  transition: 0.6s ease;
}

ul li a:hover{
  color: #fff;
}

ul li.active a{
  background-color: #4F6272;
  color: #fff;
}
.main {
  max-width: 1300px;
}

.logo {
  float: left;
  padding-left: 20px;
  margin-top: 20px;
  font-family: 'Bubblegum Sans', cursive;
  color: #fff;
}
.text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Raleway', sans-serif;
}
.text p {
  font-family: 'Raleway', sans-serif;
  font-weight: lighter;
}