HTML {
  height: 100%;
  }
BODY {
  background: linear-gradient(-45deg,
      $transparent 50%, 
      $color 50%, $color 60%, 
      $transparent 60%
      );
  background-color: khaki;
}

.hero {
  text-align: center;
  margin: 10% 0;
}

.hero > p {
  font-size: 22px;
}

.sections {
  width: auto;
}

.section {
  display: inline-flex;
  margin: 10px auto;
  padding: 20px;
  background-color: rgb(231, 230, 162);
  width: 33%;
  text-align: center;
}

.section-body {
  width: 100%;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
}

.section-content {
  margin-top: 10px;
}

.section-item {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.section-key {
  font-size: 18px;
  font-weight: bold;
}

.section-value {
  font-size: 18px;
  color: #444;
}

@media (max-width: 1000px) {
  .section {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .section {
    width: 100%;
  }
}
