* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  overscroll-behavior-y: none;
}

section {
  margin: 10% 16%;
}

h2 {
  font-size: 4rem;
  padding: 2rem 0;
  font-weight: bold;
}

h3 {
  font-size: 2.5rem;
  padding: 2rem 0;
}

p {
  font-size: 1.3rem;
  line-height: 150%;
  color: rgb(32, 32, 32);
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 8px;
  background: linear-gradient(to right, #ff5f6d, #ffc371);
  z-index: 100;
  transition: width 0.2s ease-out;
}

@media screen and (max-width: 740px) {
  section {
    margin: 10%;
  }

  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  p {
    font-size: 1rem;
  }
}