/* styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
body {
  margin: 0;
  font-family: Roboto;
  font-style: normal;
}
.container {
  margin: 0 auto;
  max-width: vw;
  width: 96%;
}
.above-the-fold {
  background: #23424a;
  color: white;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.below-the-fold {
  color: #136c72;
  padding: 5em 5em;
  display: flex;
  justify-content: space-around;
}
.an-item {
  outline: 1px solid red;
  display: flex;
  flex-direction: column;
  align-items: center;
}
