

h1 {
  font-size: 26px;
 
  color: white;
  padding: 40px 0 40px 20%;
  margin-bottom: 50px;
}

a, li {
  color: #feeb73;
  text-decoration: none;
}

.nav {
  margin-left: 12%;
}
.nav > li {
  display: inline-block;
  padding: 1em 18px;
  cursor: pointer;
  color:#feeb73;
}
.nav > li:hover {
  color: red;
  
}

.drop {
  position: relative;
}
.drop ul {
background: rgba(89, 216, 175, 0.19);
  position: absolute;
  left: 0;
  top: 3em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}
.drop ul li {
  display: block;
  width: 100%;
}
.drop ul li a {
  width: 100%;
  padding: 0em 8px;
  display: inline-block;
  white-space: pre;
  box-sizing: border-box;
  color:#feeb73;
}
.drop ul li a:hover {
  background: #e6fff7;
  
}
.drop:hover ul {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.follow {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  background: #03A9F4;
  display: block;
  margin: 300px auto 0;
  white-space: nowrap;
  padding: 13px;
  box-sizing: border-box;
  color: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: Roboto, sans-serif;
  text-decoration: none;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.2);
}
.follow i {
  margin-right: 20px;
  -webkit-transition: margin-right 0.2s ease;
  transition: margin-right 0.2s ease;
}
.follow:hover {
  width: 134px;
}
.follow:hover i {
  margin-right: 10px;
}

@media screen and (max-width: 800px) {
  .follow {
    margin: 400px auto 0;
  }
}
