* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  letter-spacing: 0.06em;
  font-family: "Helvetica", sans-serif;
  line-height: 1.3;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#vd-wrapper {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

main {
  top: 0;
  position: relative;
  transition: top 0.25s;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

main.home {
  flex-direction: column;
  justify-content: flex-end;
}

section {
  color: white;
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.thumbnail-view {
  margin: 24px 0;
  width: 300px;
  height: auto;
  justify-content: flex-start;
}

img {
  width: 80%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  z-index: 0;
  margin: 1em;
}

#my-paragraph {
  color: yellow;
  -webkit-text-stroke: 1px black;
  font-weight: bold;
  letter-spacing: 0.01em;
  word-spacing: -0.06rem;
  font-size: 27px;
  margin: 50px;
  max-width: 600px;
  z-index: 5;
}

header,
footer {
  height: 24px;
  margin: 0;
  padding-left: 50px;
  padding-right: 50px;
  color: white;
}

footer {
  padding-bottom: 1em;
  z-index: 4;
}

header {
  position: fixed;
  z-index: 4;
  margin-top: 2px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header div {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

nav {
  position: absolute;
  display: none;
  width: 60vw;
  max-width: 600px;
  margin: 0;
  padding-left: 50px;
  padding-top: 50px;
  background-color: transparent;
  z-index: 0;
  overflow: scroll;
  transition: transform 0.25s;
}
nav p {
  margin: 1em 0;
}

.is-hidden {
  top: 80vh;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
}

a {
  text-decoration: none;
  /* -webkit-text-stroke: 1.3px black; */
  color: inherit;
}

#back {
  position: fixed;
  height: 24px;
  bottom: 0px;
  right: 50px;
  display: none;
}

table {
  margin: 1em 0;
}

th, td {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-align: left !important;
  padding: 0.5em;
  outline: 1px solid white;
  outline-offset: 0.5px;
}

@media only screen and (max-width: 600px) {
  header,
  footer {
    width: 100%;
    text-align: center;
    padding-left: 24px;
  }
  p {
    width: 90%;
    margin-top: 24px;
    font-size: 20px;
  }
  nav {
    width: 100%;
    padding: 24px;
    margin: 0;
  }
  #my-paragraph {
    letter-spacing: 0.01em;
    word-spacing: -0.06rem;
    font-size: 27px;
    margin: 24px;
    max-width: 90%;
    z-index: 5;
  }
  #back {
    right: 24px;
  }
  section {
    align-items: center;
  }
  section p {
    text-align: center;
  }
  section.thumbnail-view {
    margin: 24px 8px;
    width: calc(50vw - 16px);
    height: auto;
    align-items: center;
    justify-content: center;
  }
  section.thumbnail-view img {
    height: fit-content;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */