html {
  width: 728px;
  height: 90px;
}

body {
  margin: 0;
  border: 1px solid #000;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

h1{
  font-family: urw-din, sans-serif;
  color: #19335e;
  font-size: 26px;
  margin: 12px 0 0 5px;
  line-height: 1.1;
  letter-spacing: -0.25px;
  text-align: center;
  opacity: 0;
  -webkit-animation: slide 2.5s forwards;
  -moz-animation: slide 2.5s forwards;
  -ms-animation: slide 2.5s forwards;
  -o-animation: slide 2.5s forwards;
  animation: slide 2.5s forwards;
}

h2 {
  font-family: urw-din, sans-serif;
  color: #00a4dd;
  margin: -11px 0 0 201px;
  font-size: 21.5px;
  letter-spacing: -0.25px;
  opacity: 0;
  -webkit-animation: appear 2s forwards 3s;
  -moz-animation: appear 2s forwards 3s
  -ms-animation: appear 2s forwards 3s;
  -o-animation: appear 2s forwards 3s;
  animation: appear 2s forwards 3s;
}

h3 {
  margin: 0;
}

.guide {
  width: 728px;
  height: 90px;
  opacity: 0.4;
  position: absolute;
}

.background-image {
  width: 728px;
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-animation: appear 2s forwards;
  -moz-animation: appear 2s forwards;
  -ms-animation: appear 2s forwards;
  -o-animation: appear 2s forwards;
  animation: appear 2s forwards;
}

.row-one {
  display: flex;
  justify-content: space-between;
  width: 498px;
  margin: 0 auto;
}

.row-two {
  display: flex;
  justify-content: space-between;
}

.button {
  font-family: urw-din, sans-serif;
  color: #ffff;
  background: #FFB902;
  border: 1px solid #fff;
  text-align: center;
  width: 111px;
  font-size: 15.5px;
  border-radius: 5px;
  opacity: 0;
  height: 25px;
  padding: 6px 7px;
  margin: 22px -41px -11px 0px;
  -moz-animation: slide 2s forwards 4s;
  -ms-animation: slide 2s forwards 4s;
  -o-animation: slide 2s forwards 4s;
  -webkit-animation: slide 2s forwards 4s;
  animation: slide 2s forwards 4s;
}

.button:hover {
  background: #ffca41;
}

.logo {
  text-align: center;
  width: 45px;
  margin: 0 auto;
  opacity: 0;
  margin: -33px 11px 0 0;
  -webkit-animation: appear 2s forwards 6s;
  -moz-animation: appear 2s forwards 6s;
  -ms-animation: appear 2s forwards 6s;
  -o-animation: appear 2s forwards 6s;
  animation: appear 2s forwards 6s;
}

@-webkit-keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  45% {
    transform: translateX(-300px);
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  45% {
    transform: translateX(-300px);
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

