@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap');

@keyframes HeroAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 3;
    transform: translateY(0);
  }
}

html {
  height: 100%;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #f3f3f4;
  color: #7e7f83;
  height: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  color: #183a37;
  font-family: 'Homemade Apple', cursive;
  margin: 0;
  animation: HeroAnimation;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

p {
  margin: 0;
  animation: HeroAnimation;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

a {
  color: #F46036;
  text-decoration: none;
}

a:hover {
  color: #183a37;
}

img {
  height: 40px;
  animation: HeroAnimation;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

img:hover {
  fill: #c44900;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  transform: translateY(-9px);
}

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

.main {
  margin: 35vh 0 0 0;
}

.sec1 {
  text-align: center;
  margin: 0;
  padding: 0;
}

.sec1 p {
  text-transform: uppercase;
}

.sec2 {
  max-width: 50%;
  text-align: center;
  display: block;
  margin: auto;
  margin-top: .7rem;
}


/* Footer */
.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: small;
  padding-bottom: 2rem;
  animation: HeroAnimation;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}