@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}

footer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 246, 252, 0)), to(rgba(0, 0, 0, 0.8))), url("/images/home.jpg");
  background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0), rgba(0, 0, 0, 0.8)), url("/images/home.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 4em;
  font-size: 2rem;
  color: white;
}

.home {
  height: 500px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 246, 252, 0)), to(rgba(0, 0, 0, 0.8))), url("/images/home.jpg");
  background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0), rgba(0, 0, 0, 0.8)), url("/images/home.jpg");
  background-size: cover;
  background-position: center -25em;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  padding: 3rem 2rem;
}

.home .home-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 8rem;
  padding-top: 0.5em;
}

.home .home-subtitle {
  padding-top: 1em;
  color: #b8b8b8;
  font-size: 1.5rem;
}

.home .dog-emoji {
  -webkit-animation: upDown 3s infinite alternate ease-in-out;
          animation: upDown 3s infinite alternate ease-in-out;
  position: absolute;
  top: 140%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.home .dog-emoji:hover {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

@-webkit-keyframes upDown {
  0% {
    margin-top: 0.1em;
  }
  100% {
    margin-top: -0.1em;
  }
}

@keyframes upDown {
  0% {
    margin-top: 0.1em;
  }
  100% {
    margin-top: -0.1em;
  }
}

.reason {
  padding-top: 1em;
  text-align: center;
}

.reason p {
  padding-bottom: 4em;
}

.reason img {
  width: 200px;
}

.reason .column-item {
  padding: 2em;
}

.reason .column-item img {
  border-radius: 20px;
  -webkit-transition: 100ms ease-in-out;
  transition: 100ms ease-in-out;
}

.reason .column-item img:hover {
  -webkit-transform: rotate(5deg) scale(1.1);
          transform: rotate(5deg) scale(1.1);
  opacity: 0.6;
}

.reason .column-item .column-img {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 50px;
          box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 50px;
}

.reason .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% auto;
      grid-template-columns: 50% auto;
}
/*# sourceMappingURL=main.css.map */