@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);

.wrapper {
  margin: 63px auto;
  width: 300px;
  min-height: 300px;
  position: relative;
  z-index: 1;
}
.wrapper .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 94.93%;
  text-align: center;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
  padding-top: 36px;
}
.wrapper .container :nth-child(1) {
  -moz-animation: slideIn 1s cubic-bezier(0.37, 0.82, 0.2, 1);
  -webkit-animation: slideIn 1s cubic-bezier(0.37, 0.82, 0.2, 1);
  animation: slideIn 1s cubic-bezier(0.37, 0.82, 0.2, 1);
}
.wrapper .container :nth-child(2) {
  -moz-animation: slideIn 2s cubic-bezier(0.37, 0.82, 0.2, 1);
  -webkit-animation: slideIn 2s cubic-bezier(0.37, 0.82, 0.2, 1);
  animation: slideIn 2s cubic-bezier(0.37, 0.82, 0.2, 1);
}
.wrapper .container :nth-child(3) {
  -moz-animation: slideIn 3s cubic-bezier(0.37, 0.82, 0.2, 1);
  -webkit-animation: slideIn 3s cubic-bezier(0.37, 0.82, 0.2, 1);
  animation: slideIn 3s cubic-bezier(0.37, 0.82, 0.2, 1);
}
.wrapper .container :nth-child(4) {
  -moz-animation: slideIn 4s cubic-bezier(0.37, 0.82, 0.2, 1);
  -webkit-animation: slideIn 4s cubic-bezier(0.37, 0.82, 0.2, 1);
  animation: slideIn 4s cubic-bezier(0.37, 0.82, 0.2, 1);
}
.wrapper .trophy {
  margin-bottom: 24px;
}
.wrapper h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 22px;
}
.wrapper .score {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #0288d1;
  font-size: 12px;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 17px;
}
.wrapper p {
  font-family: 'Source Sans Pro', sans-serif;
  color: #999999;
  font-size: 15px;
  padding: 0 15%;
  line-height: 24px;
}
.wrapper .buttons {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}
.wrapper .buttons .button {
  display: block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 0 10%;
  height: 48px;
  line-height: 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.wrapper .buttons .button:hover span {
  border-bottom: 2px solid #fff;
}
.wrapper .buttons .button:not(:last-of-type) {
  margin-bottom: 12px;
}
.wrapper .buttons .button.light {
  background-color: #4fc3f7;
}
.wrapper .buttons .button.dark {
  background-color: #0288d1;
}
@keyframes slideIn {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@-webkit-keyframes slideIn {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}