.header-test {
  background: black;
  height: 100px;

  .header-test-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Dela Gothic One";
    justify-content: space-between;

    h1 {
      color: white;
      font-family: "Dela Gothic One";
      font-size: 60px;
    }

    @media (max-width: 850px) {
      h1 {
        font-size: 40px;
      }
    }

    .header-test-menu {
      @media (min-width: 850px) {
        display: none;
      }
      color: white;
      font-family: "Dela Gothic One";
      font-size: 20px;
    }
  }
}

.fv-test {
  height: calc(100vh - 100px);
  min-height: 500px;
  background: black;
  position: relative;

  .fv-img-container {
    position: absolute;
    height: calc(100vh - 300px);
    min-height: 300px;
    width: 100%;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .fv-contents-container {
    position: absolute;
    height: 100%;
    width: 80%;
    max-width: 1200px;
    p {
      color: white;
      font-family: "Dela Gothic One";
    }
    #svg-fv-test {
      z-index: 10;
    }
    #fv-menu {
      position: absolute;
      bottom: 10%;
      left: 2%;
      gap: 20px;
      .flex {
        position: relative;
        height: 50px;
        width: 350px;
        .fv-menu-line-container {
          position: absolute;
          z-index: 10;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
        }
        p {
          position: absolute;
          justify-content: start;
          padding-left: 32px;
          top: 0;
          right: 0;
          height: 100%;
          width: 60%;
          font-size: 20px;
          background: #773692;
          color: white;
        }
      }
      @media (max-width: 1200px) {
        .flex {
          width: 250px;
          p {
            padding-left: 20px;
            font-size: 16px;
          }
        }
      }
      @media (max-width: 850px) {
        .flex {
          display: none;
        }
      }
    }
    .fv-catch-copy {
      position: absolute;
      top: 7%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 32px;
    }
    @media (max-width: 1200px) {
      .fv-catch-copy {
        font-size: 24px;
      }
    }
    @media (max-width: 850px) {
      .fv-catch-copy {
        font-size: 16px;
      }
    }
    .fv-univ {
      position: absolute;
      top: 8%;
      right: 2%;
      font-size: 32px;
      letter-spacing: 4px;
      display: inline-block;
      transform-origin: top right;
      transform: rotate(-90deg) translate(0, -100%);
    }
    @media (max-width: 850px) {
      .fv-univ {
        font-size: 24px;
        right: 4%;
      }
    }
    @media (max-height: 700px) {
      .fv-univ {
        letter-spacing: 0;
        top: 10%;
      }
    }
    .fv-street-dance {
      position: absolute;
      font-size: 60px;
      bottom: 8%;
      right: 5%;
      p:nth-child(1) {
        margin-bottom: -15px;
        color: transparent;
        -webkit-text-stroke: 2px #fff;
      }
      p:nth-child(2) {
        margin-bottom: -15px;
        color: transparent;
        -webkit-text-stroke: 2px #fff;
      }
    }
    @media (max-width: 1200px) {
      .fv-street-dance {
        font-size: 48px;
      }
    }
    @media (max-width: 850px) {
      .fv-street-dance {
        font-size: 32px;
        letter-spacing: 4px;
        p:nth-child(1) {
          margin-bottom: -10px;
        }
        p:nth-child(2) {
          margin-bottom: -10px;
        }
      }
    }
  }
}
