body {
    position: relative;
    height: 100vh;
    margin: 0;
    overflow: hidden;
  }

  @font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.woff") format("woff"),
      url("fonts/Roboto-Regular.woff2") format("woff2");
  }

  @font-face {
    font-family: "RobotoBold";
    src: url("fonts/Roboto-Bold.woff") format("woff"),
    url("fonts/Roboto-Bold.woff2") format("woff2");
  }

  .landing-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  video#ict-video {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 30em;
    width: auto;
    transition: height 0.5s linear;
    z-index: -1;
  }

  img#frame-image {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    transition: transform 2.5s ease-in-out;
    transform-origin: 50.5% 70%;
    z-index: -1;
  }

  img#logo-image, .title-text, .undertitle-text, .hover-button {
    transition: opacity 0.6s ease-in-out;
  }

  img#logo-image {
    position: absolute;
    top: 3em;
    left: 3em;
    width: 10em;
    height: auto;
  }

  .title-text {
    position: absolute;
    top: 1em;
    left: 13.3em;
    color: rgba(102, 51, 102, 1);
    font-size: 3em;
    font-family: "RobotoBold";
    border-bottom: 3px solid rgba(229, 0, 125, 1);
    padding-bottom: 0.3em;
  }

  .undertitle-text {
    position: absolute;
    margin-top: 1.3em;
    color: rgba(229, 0, 125, 1);
    font-size: 0.5em;
    font-family: "RobotoBold";
  }

  .hover-button {
    top: 6em;
    left: 120px;
    padding: 10px 15px;
    font-size: 20px;
    background-color: #ffffff;
    color: rgba(229, 0, 125, 1);
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    overflow: hidden;
    border-top: 3px solid rgba(229, 0, 125, 1);
    border-bottom: 3px solid rgba(229, 0, 125, 1);
    font-family: "RobotoBold";
    font-size: 3em;
  }

  .hover-button span {
    margin: 5px 0;
  }

  .hover-button::before,
  .hover-button::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(229, 0, 125, 1);
    transition: all 0.4s ease;
    height: 0;
  }

  .hover-button::before {
    top: 0px;
    left: 0;
  }

  .hover-button::after {
    bottom: 0px;
    right: 0;
  }

  .hover-button:hover::before {
    height: calc(100%);
  }

  .hover-button:hover::after {
    height: calc(100%);
  }