html,
body {
  height: 100dvh;
  width: 100dvw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

button {
  background-color: transparent;
  border: none;
}

a {
  text-decoration: none !important;
  color: unset;
}

div,
img,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  display: flex;
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.scroll_view_y {
  overflow-x: hidden;
  overflow-y: auto;
}

.scroll_view_x {
  overflow-x: auto;
  overflow-y: hidden;
}

.scroll_view_snap_y {
  scroll-snap-type: y mandatory;
}

.scroll_view_snap_x {
  scroll-snap-type: x mandatory;
}

.scroll_section_snap {
  scroll-snap-align: start;
  flex: 1 0 100%;
}

.background_cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.background_contain {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.jump_up_down {
  animation: jumpUpDown 2s infinite ease-in-out;
}

.audio_lab_link {
  color: red !important;
}

.audio_lab_link:hover {
  color: darkred !important;
}

.festive_fusion_link {
  color: gold;
}

.festive_fusion_link:hover {
  color: goldenrod;
}

.scroll_view_solid {
  overscroll-behavior: none;
}