*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.wrapper {
  padding: 10px;
  text-align: center;
  position: relative;
  top: 40%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.wrapper .title {
  font-size: 5rem;
  color: #3E454C;
  font-family: 'Montserrat';
}
.wrapper .title::selection {
  background-color: rgba(80, 143, 255, 0.5);
}
.wrapper .subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
  font-family: 'Lato';
}
.wrapper .subtitle::selection {
  background-color: rgba(80, 143, 255, 0.5);
}
.wrapper .subtitle a {
  text-decoration: none;
  color: #508FFF;
}
.wrapper .subtitle a::selection {
  background-color: rgba(80, 143, 255, 0.5);
}
.wrapper .links {
  padding-top: 6rem;
}
.wrapper .links .marker {
  text-decoration: none;
  text-align: center;
  height: 50px;
  width: 50px;
  display: inline-block;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  background-color: #508FFF;
  color: #FFFFFF;
  padding-top: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 10px 30px -5px #AAC7FA;
  transition: all 0.5s ease-in-out 0s;
}
.wrapper .links .marker:hover {
  box-shadow: 0 15px 35px 0px #AAC7FA;
  cursor: pointer !important;
}
.wrapper .links .marker i {
  font-size: 1.5rem;
}

@media screen and (max-width: 650px) {
  .wrapper .title {
    font-size: 2.4rem;
  }
  .wrapper .subtitle {
    font-size: 1rem;
  }
  .wrapper .links {
    padding-top: 2.5rem;
  }
}
