@font-face {
  font-family: "LogoPixies";
  src: url("../fonts/LogoPixies.woff2") format("woff2"),
    url("../fonts/LogoPixies.woff") format("woff"),
    url("../fonts/LogoPixies.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PlayFair";
  src: url("../fonts/PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  background: #000;
  margin: 0px;
  padding: 0px;
  overflow-x: clip;
}

@media (min-aspect-ratio: 16/9) {
  video {
    width: 100vw;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;

    z-index: 1;
  }

  iframe {
    aspect-ratio: 16 / 9;
    height: 50%;
    width: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  video {
    width: auto;
    height: 100vh;
    position: relative;
    z-index: 1;
  }
  .content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;

    z-index: 1;
  }

  iframe {
    aspect-ratio: 16 / 9;
    width: 80%;
    height: auto;
  }
}

h1 {
  color: #fff;
  font-weight: 400;
  font-size: 10vw;
  font-family: "LogoPixies";
  color: black;
  -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke: 1px black;
}

h2 {
  color: #d45c4c;
  font-weight: 400;
  font-size: min(5vw, 40px);
  font-family: "LogoPixies";
  margin: 1vh;
  -webkit-text-fill-color: #d45c4c; /* Will override color (regardless of order) */
  -webkit-text-stroke: 1px black;
}

h3 {
  color: #fff;
  font-weight: 400;
  font-size: min(10vw, 10vh);
  font-family: "LogoPixies";
  color: black;
  -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke: 1px black;
}

#header {
  height: 100vh;
  width: 100vw;
}

#newRelease {
  height: 100vh;
  width: 100vw;
  background-image: url("../img/background.png");
  background-size: cover;

  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

#newVideo {
  height: 100vh;
  width: 100vw;
  background-image: url("../img/video-background.png");
  background-size: cover;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

#titleLogo {
  width: min(100vw, 50vh);
  height: min(100vw, 50vh);
}

#socials {
}

#socialNav {
  position: absolute;
  top: 1vh;
  width: 40vw;
  height: 4vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.icon {
  display: flex;
  flex: 1;
  max-height: 4vh;
  justify-content: center;
  align-items: center;
  align-content: center;
}

svg {
  fill: #ffffff;
}

svg:hover {
  fill: #d45c4c;
}

#about {
  font-size: 26px;
  color: #000;
  display: flex;
  flex-direction: row;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

#aboutEnglish {
  flex: 1;
  padding-left: 3vw;
  padding-right: 3vw;
  font-size: large;
  text-align: justify;
  text-justify: inter-word;
  background-color: white;
  color: #d45c4c;
}

#redTextLink {
  font-size: large;
  text-align: justify;
  text-justify: inter-word;
  background-color: white;
  color: #d45c4c;
  text-decoration: none;
}

#whiteTextLink {
  font-size: large;
  text-align: justify;
  text-justify: inter-word;
  color: white;
  text-decoration: none;
}

#aboutJapanese {
  flex: 1;
  padding-left: 3vw;
  padding-right: 3vw;
  font-size: large;
  text-align: justify;
  text-justify: inter-word;
  background-color: #d45c4c;
  color: white;
}

#footer {
  position: relative;
  display: flex;
  flex-direction: row;
  bottom: 0px;
  width: 100%;
  height: 8vh;
  line-height: 8vh;
  color: black;
  z-index: 3;
  transition: all 300ms ease;
}

#footerNameContainer {
  flex: 1;
  height: 8vh;
  display: flex;
  align-items: center;
  padding-left: 4vw;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #d45c4c;
  color: white;
}

#copyright {
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UIEmoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
}

#footerLogoContainer {
  flex: 1;
  height: 8vh;
  padding-right: 4vw;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  background-color: white;
  color: #d45c4c;
}

.footerLogo {
  position: relative;
  height: 6vh;
  object-fit: contain;
  aspect-ratio: 1;
}
