body {
  background: #E5E5E5;
  box-sizing: border-box;
}

/* ==========================================================================
   main styles.
   ========================================================================== */
main {
  margin: 0 auto;
  text-align: center;

  font-family: "Roboto", Arial, Helvetica, sans-serif;
  width: 100%;
  max-width: 720px;
}

#hero {
  height: 343px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/img/jenatower-bg.webp");
  background-size: cover;
  background-position: center;
}

.hero-title {
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 32px;
  font-weight: 700;
  background: #251F47;
  color: #fff;
}

.hero-text {
  width: 100%;
  max-width: 412px;
  margin-top: 11px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 10px;
  color: #fff;
  background: #404E7C;
  padding: 5px 29px;
}

#activities {
  background: #F1FAEE;
  padding: 5px
}

.activities-title {
  margin: 10px 0;
}

.activities-cards {
  display: flex;
  min-height: 378px;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}

.activity {
  width: 100%;
  max-height: 227px;
  max-width: 200px;
  margin-right: 20px;
  color: #1D3557;
}

.activity-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

#guide {
  background: #fff;
  max-height: 394px;
  padding: 50px 160px;

  color: #1D3557;

}

.guide-card {
  display: flex;
  width: 400px;
  background: #A8DADC;
  padding: 23px 13px;
  border-radius: 10px;
  color: #1D3557;
  box-shadow: 0 6px 0 0 #1D3557;

}

.guide-img {
  width: 50%;
  margin-right: 15px;
}

.italic {
  font-style: italic;
}

