:root {
  --font-title: "PT Sans";
  --font-main: "Biryani", sans-serif;

  --colour-primary: #9cc48d;
  --colour-base: #121212;
  --colour-secondary: #ffffff;
  --colour-darken: #ffffff;
  --colour-text: #ffffff;
  --colour-contrast: #cecece;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;

  font-family: var(--font-main);
  color: var(--colour-text);

  transition-property: box-shadow, background, border-color, color, fill, stroke;
  transition-duration: 175ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  min-height: 100vh;
  width: 100%;
  background-color: var(--colour-base);
}

#hero-video {
  overflow-x: hidden;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  z-index: -1;
}

#hero-video video {
  height: 100vh;
  aspect-ratio: 16/9;
}

#hero {
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

#icons a {
  border-radius: 99999px;
  width: 32px;
  height: 32px;
}

#icons img {
  width: 32px;
  height: 32px;
  opacity: 0.5;
  border-radius: 99999px;
  transition-property: box-shadow, background, border-color, color, fill, stroke,
    opacity;
}

#icons img:hover {
  opacity: 1;
}

#info {
  margin-top: 2rem;
  background: url(/img/gallery/gravy_blurredbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 7rem 6rem;
}

#info h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 20px;
}

#info button {
  cursor: pointer;
  margin-top: 2rem;
  border: 2px solid var(--colour-text);
  padding: 0.8rem 1rem;
  width: 100%;
}

#info button:hover {
  background: white;
  color: var(--colour-base);
}

#info img {
  max-width: 100%;
  max-height: 100%;
}

#info-content {
  background: rgba(0, 0, 0, 0.75);
  padding: 2rem;
  width: 100%;
}
