@import url('https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900');

body {
  height: 100vh;
  background-color: #F6E39A;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 100%;
  color: #050704;
  margin: 5% 5% 5% 5%;
}

h1 {
  color: #4A61E3;
  font-size: 4.5em;
  font-weight: 700;
}

h2 {
  font-size: 2.5em;
  color: #4A61E3;
  font-weight: 900;
  padding-top: 30px;
  display: inline;
}

h3 {
  font-weight: 300;
  display: inline;
  color: #050704;
}

p {
  font-size: 2.5em;
  font-weight: 300;
  display: block;
}

#show-btn {
  cursor: pointer;
  font-family: 'Frank Ruhl Libre', serif;
  color: white;
  font-size:24px;
  border-radius: 4px;
  background-color:#4A61E3;
  border: none;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
}

#show-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#show-btn span:after {
  content: '!';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#show-btn:hover span {
  padding-right: 25px;
}

#show-btn:hover span:after {
  opacity: 1;
  right: 0;
}
