h1 {
  font-family: "Verdana", sans-serif; 
  font-size: 3vw;
  text-align: left;
  margin: 0;
  padding: 20px 0;
  color: white;
  text-shadow: 3px 3px 1px black;
}

body {
  font-family: "Verdana", sans-serif;
  padding: 2em;
  background-color: #00284d;
  color: dcdcdc;
}

.title {
  padding-left: 1em;
  grid-column: 1 / -1;
  grid-row: 1;
  font-family: "Verdana", sans-serif;
  font-size: 2vw;
  width: 80%;
}

.button {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  background: #00284d;
  padding: 20px;
  border-radius: 5px;
  display: inline-block;
  border: none;
  transition: all 0.4s ease 0s;
}
.button:hover {
  color: #00284d;
  background: white;
  letter-spacing: 1px;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  box-shadow: 5px 40px -10px rgba(0, 0, 0, 0.57);
  transition: all 0.4s ease 0s;
}

#app {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding-bottom: 4vmin;
  height: 10vh;
  width: 100%;
  background: #00284d;
  color: #dcdcdc;
}

.hero {
  min-height: 10vh;
  background-size: cover;
  background-position: center;
  display: grid;
}

.hero-inner {
  max-width: 90%;
  place-self: end start;
  color: #dcdcdc;
  padding: 1em;
}

@media (min-width: 700px) {
  .hero-inner {
    max-width: 70%;
    place-self: left;
  }
}

.hero {
  animation: fadeIn 1s forwards;
  animation-delay: .9s;
  opacity: 0;
}

.hero-text {
  animation: fadeInUp 1s forwards;
  animation-delay: 1.8s;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(-20px);
  }
}


@keyframes text-clip {
  from {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes outer-left {
  from {
    transform: translateX(50%);
  }
  to {
    transform: none;
  }
}

@keyframes inner-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: none;
  }
}

.topline,
.secondline {
  animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
}


.title-inner {
  display: inline-block;
  animation: inner-left 1s 1s ease both;
}

.topline-inner {
  display: inline-block;
  animation: inner-left 1s 1s ease both,
    text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.secondline-inner {
  white-space: pre;
  animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.title {
  animation: outer-left 1s 1s ease both;
}


.secondline {
  display: inline-block;
}
