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

html {
  height: -webkit-fill-available;
  height: 100%;
}

:root {
  /* Colors */
  --primary-color: #007237;
  --background-color: #fbfbfb;
  --gray: #828282;
  --light-gray: #aaa;
  --white: #fff;
  --light-white: #e3e3e3;
  --lighter-white: #ddd;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  overflow-x: hidden;
  height: 100%;
}

#hero {
  background: var(--primary-color);
  min-height: 80vh;
  display: grid;
  width: 100vw;
  padding: 2rem;
  grid-gap: 2rem;
  align-items: center;
}
#hero .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#hero .left strong {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
#hero .left p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
#hero .left .pray-btn {
  text-decoration: none;
  background: #fff;
  color: teal;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  margin-top: 1rem;
  display: grid;
  cursor: pointer;
  place-content: center;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#hero .left .pray-btn:hover {
  background-color: #eee;
}
#hero .right .img {
  min-width: 20vw;
}
#hero .right .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-3 {
  padding: 1rem;
}

.mt-5 {
  margin-top: 2rem;
}

#gallery {
  text-align: center;
}
#gallery .title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  color: #125f69;
}
#gallery .subtitle {
  color: #374a4d;
  font-weight: 600;
}
#gallery .images {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
#gallery .images .img {
  background-color: #eee;
  border-radius: 10px;
  padding: 1.5rem;
}
#gallery .images .img img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  #hero {
    grid-template-columns: 1fr 1fr;
    padding: 5rem;
  }

  #gallery .images {
    grid-template-columns: repeat(4, 1fr);
  }
}/*# sourceMappingURL=site.css.map */