@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Source+Sans+Pro&display=swap");
body {
  margin: 0;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
}

p, a {
  font-family: "Source Sans Pro", sans-serif;
}

img {
  width: 100%;
  height: auto;
  margin-bottom: 5%;
}

.mockups {
  padding-left: 2%;
  width: 45%;
  height: 50%;
}

@media (max-width: 479px) {
  .mockups {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
}

main {
  padding-left: 25%;
  padding-right: 25%;
  padding-bottom: 10%;
}

@media (max-width: 479px) {
  main {
    padding: 0;
    padding-left: 5%;
    padding-right: 5%;
  }
}

footer {
  display: -ms-grid;
  display: grid;
  font-family: "Poppins", sans-serif;
  background-color: #00071C;
  color: #757882;
  font-size: 1.5em;
  width: 100%;
  bottom: 0;
}

@media (max-width: 479px) {
  footer {
    height: 30vh;
  }
}

footer p {
  padding-left: 10%;
}

@media (max-width: 479px) {
  footer p {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#topButton {
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, color-stop(75%, #ff7b48), to(tomato));
  background: linear-gradient(90deg, #ff7b48 75%, tomato 100%);
  -webkit-box-shadow: 0 0 10px #6a8b9b;
          box-shadow: 0 0 10px #6a8b9b;
  color: #fff;
  outline: none;
  border: none;
}

#topButton:active {
  background: #6a8b9b;
}
/*# sourceMappingURL=casestudies.css.map */