* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-transform: uppercase;
  font-family: "Michroma", sans-serif;
}
:root {
  --semi-transparent: rgba(255, 255, 255, 0.3);
  --navigation-highlight: rgba(130, 255, 249, 0.88);
  --navigation-hover-bg: rgba(255, 255, 255, 0.04);
  --navigation-hover-active: rgba(255, 255, 255, 0.08);
}
body,
html {
  height: 100%;
  overflow: hidden;
  background-color: #1a38b2;
  /* font-family: "Exo 2", sans-serif;*/
  font-weight: 100;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
}

#bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
}

.content {
  height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 2;
  color: white;
  background-color: rgba(0, 0, 0, 0.3); /* optional overlay */
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 100px repeat(11, 1fr);
}
header {
  grid-row: 1;
  grid-column: 1 / span 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
#shark-fin {
  height: 60px;
  fill: silver;
}
nav ul {
  display: flex;
}
nav > ul li {
  height: 100px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0 20px;
  border-bottom: 4px solid transparent;
  font-size: 16px;
  letter-spacing: 1px;
}
li:hover {
  background-color: var(--navigation-hover-bg);
  border-bottom: 4px solid var(--navigation-highlight);
  color: var(--navigation-highlight);
}

main {
  grid-row: 6;
  grid-column: 1 / span 12;
  text-align: center;
}
h1,
h2 {
  text-align: center;
}
h1 {
  font-size: 50px;
  letter-spacing: 10px;
  font-weight: 900;
}
h2 {
  letter-spacing: 5px;
  font-size: 20px;
  color: var(--semi-transparent);
}
button {
  grid-row: 9;
  grid-column: 1 / span 12;
  width: fit-content;
  justify-self: center;
  background-color: transparent;
  border: 1px solid var(--semi-transparent);
  color: var(--semi-transparent);
  padding: 0 30px;
  white-space: nowrap;
  letter-spacing: 1.5px;
  aspect-ratio: 3.5/1;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  color: var(--navigation-highlight);
  border-color: var(--navigation-highlight);
  background-color: var(--navigation-hover-bg);
}
button:active,
nav > ul li:active {
  background-color: var(--navigation-hover-active);
}
button,
li {
  transition: 0.2s;
}