body {
  position: relative;
}

main {
  position: relative;
  z-index: 0;
}

h1 {
  font-size: 100px;
  font-family: pragmatica-bold;
}

section {
  position: relative;
  padding: 0px 40px 40px 40px;
  background-color: white;
  z-index: 10;
}

.fixed-section {
  position: sticky;
  height: 50dvh;
  top: 30%;
  z-index: 1;
}

.container {
  display: flex;
  width: 100%;
  border-top: 1px solid rgb(238, 238, 238);
  padding-top: 40px;
  font-family: varela;
}

h4 {
  width: 50%;
}

.information {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: normal;
  font-size: 16px;
}

.information span {
  font-weight: bolder;
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 40px;
    padding-top: 20px;
  }

  section {
    padding: 0px 20px 40px 20px;
    z-index: 3;
  }

  .fixed-section {
    min-height: 150px;
    height: 30dvh;
    top: 20%;
    z-index: 1;
  }

  .container {
    flex-direction: column;
  }

  h4,
  .information {
    width: 100%;
  }

  .information {
    padding-top: 20px;
  }
}
