* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #fff;
}

.header {
  height: 80px;
  padding-inline: 32px;
}

.body {
  margin-bottom: 200px;
  position: relative;
  padding-top: 250px;
}

.hero {
  height: 500px;
  background-image: url('/hero_bg.png');
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.content {
  position: relative;
  max-width: 1300px;
  width: calc(100% - 120px);
  margin: auto;
  padding: 60px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  z-index: 2;

  @media screen and (max-width: 768px) {
    padding: 16px;
    width: calc(100% - 32px);
  }
}

.footer-content {
  height: 400px;
  background-image: url('/footer_bg.png');
}

.footer-footer {
  height: 100px;
  background: #000;
}
