* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
p,
a {
  color: #5a5a5a;
}
h1 {
  font-weight: 600;
  font-size: 24px;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  background-color: #f0f0f0;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}
.logo-wrapper {
  height: 10vh;
}
.logo {
  width: 140px;
  margin: 20px;
}
.main-content {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
.main-content h1 {
  margin-bottom: 20px;
}
.main-content p {
  margin: 0 auto;
  width: 70%;
  font-weight: 200;
}
.features {
  display: flex;
  justify-content: space-evenly;
  flex-flow: row wrap;
  margin-top: 30px;
}
.feature-square {
  background-color: #ffffff;
  width: 170px;
  height: 170px;
  border-radius: 25px;
  margin: 25px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.feature-icon {
  margin-top: 30px;
  width: 80px;
  height: 80px;
  fill: #5a5a5a;
}
footer {
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding-top: 20px;
  }

  .features {
    padding: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .features {
    padding: 0px 40px 0px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .features {
    padding: 0px 150px 0px 150px;
  }
}
