@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
  text-align: center;
}

* {
  font-family: 'Quicksand', sans-serif;
}
.hero-image {
  min-height: 100vh;
  background: linear-gradient(rgb(255, 255, 255,0.1), rgba(255, 255, 255)) ,url("/images/hero.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  
  .hero-title {
      color: white;
      font-size: 10em;
      text-shadow: 2px 6px 12px #00000086;
  }
  
.cookie {
    padding: 0.5rem 0;
}
.section {
  margin: 50px auto;
  padding: 20px;
  background-color: white;
  max-width: 800px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.section h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.section p {
  text-align: left;
  margin: 10px 0;
}
.indent {
  padding-left: 17px;
}