body{
  overflow-x: hidden;
}

* {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
button {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 'slnt' 0;
}

header {
  border-bottom: 1px solid #eee;
}

header img {
  width: 200px;
  display: block;
  margin: 20px auto;
}

.data h1 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

.data h1 span {
  background-color: #5bcd8b;
  padding: 0px 10px;
  border-radius: 5px;
  width: max-content;
}

.data p {
  margin: 50px auto;
  text-align: center;
  font-weight: 500;
  max-width: 600px;
  padding: 0px 20px;
}

.illustration {
  width: 100%;
  position: relative;
  height: 300px;
}

.illustration img:first-of-type {
  width: 100%;
  position: absolute;
  top: 50px;
  z-index: 1;
}

.illustration img:nth-of-type(2) {
  width: 750px;
  max-width: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.illustration img:nth-of-type(3) {
  width: 100%;
  position: absolute;
  top: 150px;
  z-index: 3;
}

footer div {
  color: #000;
  text-align: center;
  padding: 25px;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .data h1 {
    font-size: 3rem;
  }

  .illustration {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .illustration {
    height: 230px;
  }

  .illustration img:nth-of-type(3) {
    top: 80px;
  }

  footer div {
    margin-top: 0px;
  }

}