* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  body {
    background: black;
    overflow-y: scroll;
    font-family: "SUSE", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: white;
  }
  .glimpseParent {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
      url("/images/pc_bg.webp");
      background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    color: white;
    position: relative;
  }
  .glimpseParent {
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .glimpseParent::-webkit-scrollbar {
    display: none; /* WebKit browsers */
  }
  .glimpseParent h2 {
    font-size: 35px;
  }
  .glimpseParent p {
    width: 500px;
    margin-top: 15px;
  }
  .glimpseTitleBar h2,
  p {
    text-align: center;
  }
  .glimpseChild {
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .portraitImages {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 70px;
  }
  .portraitImages div {
    position: relative;
    height: 650px;
    width: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
    border: 2px solid rgba(0, 89, 255, 0.551);
    box-shadow: 5px 5px 10px rgba(0, 8, 255, 0.519), -5px -5px 10px rgba(0, 42, 255, 0.519);
    overflow: hidden;
  }
  .portraitImages div video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .glimpseParent div img {
    width: 120%;
  }
  .landscapeImages {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
  }
  .landscapeImages div {
    position: relative;
    width: 600px;
    height: 350px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 0, 0.6);
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(255, 0, 0, 0.519), -5px -5px 10px rgba(255, 0, 0, 0.519);
    animation: moveright 0.5s linear forwards;
    opacity: 0;
  }
  @keyframes moveright {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  .landscapeImages div:nth-child(1) {
    animation-delay: 0s;
  }
  .landscapeImages div:nth-child(2) {
    animation-delay: 0.1s;
  }
  .landscapeImages div video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #more-glimpse{
    font-family: "SUSE", sans-serif;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.525);
    border-radius: 10px;
    padding: 6px 20px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
  }
  #more-glimpse:hover{
    box-shadow: 1px 1px 10px white, -1px -1px 10px white;
  }
  @media only screen and (max-width: 1024px) {
      .footer {
    display: none;
  }
    #more-glimpse{
      padding: 5px 10px;
    }
    /* .glimpseParent p {
      width: 350px;
      font-size: 0.8em;
    } */
    .landscapeImages,
    .portraitImages {
      flex-direction: column;
      gap: 50px;
    }
    .landscapeImages div {
      width: 300px;
      height: 190px;
    }
    .portraitImages div{
      width: 300px;
      height: 500px;
    }
    .glimpseParent h2 {
      font-size: 25px;
    }
    .glimpseParent p {
      font-size: 10px;
      width: 300px;
    }
  }
  