html {
  height: 100%;
  font-size: 18px;
  background: repeat center url("duck-and-ducklings-wallpaper.jpg");
  background-size: 600px;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 1vh;
  padding-bottom: 1vh;
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
  max-width: min(95%,960px);
  min-height: 95vh;
  margin: auto;
  font-family: Grandstander;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  border-radius: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

header {
  text-align: center;
  margin-bottom: 2vh;
}

@font-face {
  font-family: 'Copyduck';
  src: url("./fonts/Copyduck.ttf");
}
@font-face {
  font-family: 'Duck';
  src: url("./fonts/Duck.ttf");
}
@font-face {
  font-family: 'FriedDuck';
  src: url("./fonts/Fried Duck.ttf");
}
@font-face {
  font-family: 'Grandstander';
  src: url("./fonts/Grandstander-clean.ttf");
}

h1 {
  font-size: clamp(3rem, 6vh, 5rem);
  margin-top: 0;
  padding-top: 2vh;
  margin-bottom: 2vh;
  font-family: Copyduck;
  letter-spacing: -0.3rem;
}

section {
  text-align: center;
  flex-grow: 1;
}

h2 {
  font-size: clamp(1.5rem, 3vh, 2.5rem);
  font-family: FriedDuck;
  margin-top: 1vh;
  margin-bottom: 1vh;
}

h3 {
  font-size: clamp(1.2rem, 2vh, 2rem);
  margin-top: 1vh;
  margin-bottom: 2vh;
}

.video-wrapper {
  height: 70vh;
  width: 95%;
  margin: auto;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 4px 4px 4px gray;
  border-radius: 12px;
}


footer {
  text-align: center;
  margin-top: 2vh;
  padding-bottom: 1vh;
}

a {
  text-decoration-style: wavy;
  color: orange;
}

a:visited {
  color: goldenrod;
}
