html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #000;
  font-family: sans-serif;
  color: white;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden;
  display: block;
  z-index: -2;
}

#second-canvas {
  filter: blur(10px);
  z-index: -1;
}

#content-wrapper {
  box-sizing: border-box;
  position: absolute;
  margin-top: 40vh;
  margin-bottom: 20vh;
  font-size: 18px;
  width: min(600px, 90%);
  margin-left: max(5%, calc(50% - 300px));
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 10vh;
  backdrop-filter: blur(10px);
  border-radius: 2em;
  font-weight: 200;
  line-height: 1.5;
}

.content-holder {
  margin-bottom: 4em;
}

.content-holder h3 {
  font-size: 1.1em;
  font-weight: 600;
  margin: 0;
  line-height: 1.0;
}

.content-holder h2 {
  font-size: 1.5em;
  font-weight: 100;
  margin: 0;
  line-height: 1.0;
}

.content-holder h1 {
  font-size: 3.0em;
  font-weight: 600;
  margin: 0;
  line-height: 1.0;
  font-family: 'Quicksand';
}

.content-holder p {
  font-size: 1.0em;
}

.content-holder b {
  font-weight: 600;
}

.content-holder a {
  color: white;
}

.content-holder div.image {
  width: 100%;
  height: 10em;
  background-size: cover;
  background-position: center;
}

#scroll-down {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}