*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  margin: 0;
  font-family: "Merienda", cursive;
  font-style: normal;
  font-optical-sizing: auto;
}
a{
  text-decoration: none;
}
.hero{
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/banner-1.png");
  height: 60vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:#fff;
  text-align:center;
}
.hero-content button{
  border:none;
  padding:10px 25px;
  background:#ddd;
  cursor:pointer;
}
.hero-content button:hover{
  background:#555;
  color:#fff;
}
.service-box{
  border:1px solid #e2e2e2;
  border-radius:10px;
  padding:25px;
  transition:0.3s;
  background:#fff;
}
.service-box:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
footer{
  background:#111;
  color:#ddd;
  padding:40px 0;
}