
body {
  margin: 0;
  background: var(--background);
  font-family: Segoe UI;
  color: var(--text);
  overflow-x: hidden;
}

section.section_hero {
  height: 75vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


section.section_hero > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.section_hero > div.overlay > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

section.section_hero > div.hero-text {
  position: absolute;
  color: var(--title);
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, 
a:focus {
  color: var(--primary);
}

a.underline {
  background: 
    linear-gradient(to right, transparent, transparent),
    linear-gradient(to right, var(--primary), var(--primary));
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

a.underline:hover,
a.underline:focus {
  background-size: 0 0.1em, 100% 0.1em;
}

section.section_hero > div.hero-text h2 {
  filter: drop-shadow(0px 0px 10px black);
  margin: 1rem;
}

section {
  width: 100%;
  min-height: 3rem;
  padding: 1rem 5rem;
  background: var(--background);
}

section.section_title {
  text-align: center;
}

section.section_gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  --columns: 3;
  --aspect-ratio: 4/5;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

section.section_gallery > a, section.section_gallery > div, section.section_gallery > img {
  width: calc(100% / var(--columns) - (1rem * (var(--columns) - 1)));
  overflow: hidden;
  aspect-ratio: var(--aspect-ratio);
  position: relative;
  border-radius: 1rem;
}

section.section_gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.fullpage {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.secondary {
  background: var(--primary);
}