@import url("https://fonts.googleapis.com/css2?family=Jura:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: #fdfdfd;
  background-color: #151515;
  font-family: "Jura", sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #121212;
  width: 100%;
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
}

.header {
  margin: 12px 0;
  font-weight: lighter;
  font-size: 7.2vw;
  text-align: center;

  @media (min-width: 1120px) {
    font-size: 80px;
  }
}

main {
  flex: 1;
  overflow: hidden;
}

.wrapper {
  padding-top: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;

  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

#background-video {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  object-fit: cover;
}

#background-video.horizontal {
  display: none;

  @media (min-width: 920px) {
    display: block;
  }
}

#background-video.vertical {
  display: block;
  top: -20px;
  bottom: 20px;

  @media (min-width: 920px) {
    display: none;
  }
}

.text-container {
  background-color: rgba(0, 0, 0, 0.78);
  border: 1px solid white;
  border-radius: 5px;
  text-align: justify;
  scroll-snap-align: center;
  margin: 50vh 0;
  padding: 14px 16px;
  width: 75vw;
  font-size: 20px;
  text-align: left;

  @media (min-width: 660px) {
    padding: 20px 24px;
    width: 540px;
    font-size: 24px;
    text-align: justify;
  }
}

.dummy {
  visibility: hidden;
  opacity: 0;
}

footer {
  background-color: #121212;
  font-size: 12px;
  width: 100%;
  position: sticky;
  bottom: 0;
  padding: 20px 24px;
  box-sizing: border-box;
  text-align: center;

  @media (min-width: 720px) {
    font-size: 14px;
  }
}

.social-links {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.icon-info {
  color: #5c5c5c;
  margin-top: 4px;
}

a {
  color: #5c5c5c;
}
