html {
  height: 100%;
}
body {
  display: grid;
  justify-content: center;
  align-items: center;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;
  background: linear-gradient(#434343, #212121);
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body * {
  box-sizing: border-box;
}
section {
  display: flex;
  flex: 0 500px;
}
.wrapper {
  position: relative;
  display: flex;
  flex-flow: column;
  flex: 1;
  padding: 40px;
  margin: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s linear;
}
.wrapper:hover {
  box-shadow: 0px 8px 200px rgba(0, 0, 0, 1);
}
.close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s linear;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
.close:hover {
  background: #00adee;
}
h1 {
  font-size: 90px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}
h2 {
  font-size: 90px;
  font-weight: 700;
  margin-bottom: 25px;
}
p {
  line-height: 1.5;
  margin-bottom: 25px;
}
button {
  display: flex;
  justify-content: center;
  background: #00adee;
  color: white;
  border: none;
  margin-bottom: 25px;
  padding: 15px;
  font-weight: 700;
  font-size: 60px;
  border-radius: 5px;
  transition: all 0.4s linear;
  cursor: pointer;
}
button:hover {
  background: #006388;
}
.email-capture {
  display: flex;
}
.email-capture button {
  padding: 0px 20px;
}
.email-capture input {
  flex: 1;
  padding: 0 0 0 20px;
  margin: 0;
  border: none;
  height: 40px;
  background: #eee;
  border-radius: 2px;
}
@keyframes slideIn {
  from {
    transform: translateY(400px);
 }
  to {
    transform: translateY(0);
 }
}
@keyframes fadeIn {
  from {
    opacity: 0;
 }
  to {
    opaticy: 1;
 }
}
@keyframes slideDown {
  from {
    transform: translateY(-120px);
 }
  to {
    transform: translateY(0);
 }
}
@keyframes slideInShort {
  from {
    transform: translateY(80px);
 }
  to {
    transform: translateY(0);
 }
}
@keyframes blink {
  0% {
    box-shadow: 0 0 25px #00adee;
 }
  50% {
    box-shadow: none;
 }
}
section {
  animation: slideIn 0.65s 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both, fadeIn 0.25s 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
button {
  animation: slideDown 0.7s 1.15s cubic-bezier(0.03, 0.16, 0.39, 0.99) both, fadeIn 0.2s 1.1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both, blink 2s linear infinite;
}
h1, h2 {
  animation: slideInShort 0.25s 1.05s cubic-bezier(0.03, 0.16, 0.39, 0.99) both, fadeIn 0.1s 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
p, .email-capture, .close {
  animation: slideInShort 0.25s 1.1s cubic-bezier(0.03, 0.16, 0.39, 0.99) both, fadeIn 0.1s 1.05s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
