@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&display=swap");
body {
  font-family: "Titillium Web", sans-serif;
  color: black;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", cursive;
}

h2 {
  font-size: 48px;
}

p {
  font-size: 20px;
}

.btn {
  border-radius: 0;
  padding: 8px 12px;
  font-size: 20px;
}
.btn.btn-secondary {
  background-color: #e52329;
  border-color: #e52329;
}

section.section-top {
  text-align: center;
  margin-bottom: 40px;
}
section.section-top img.construction-icon {
  width: 100%;
  max-width: 500px;
  max-height: 40vh;
  -o-object-fit: contain;
     object-fit: contain;
}

section.section-bottom {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
section.section-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffe200;
  z-index: -1;
  -webkit-transform: skewY(-2deg);
          transform: skewY(-2deg);
}