#navigation-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.body-main-content {
  height: 100dvh;
  padding: 0 !important;
}
#home-page {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 75%, #000 100%), url(../../assets/images/bg-masthead.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;

  position: relative;
  height: 100%;
  width: 100%;
  min-height: 35rem;

  @media (min-width: 992px) {
    height: 100vh;
    padding: 0;
  }

  .my-information {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    height: 100%;

    .name {
      background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
      color: rgba(0, 0, 0, 0);
      font-family: var(--default-font), sans-serif;
      font-size: 2.5rem;
      line-height: 2.5rem;
      letter-spacing: 0.8rem;
      background-clip: text;
      text-align: center;
      -webkit-text-fill-color: rgba(0, 0, 0, 0);

      @media (min-width: 992px) {
        font-size: 6.5rem;
        line-height: 6.5rem;
        letter-spacing: 0.8rem;
      }
    }

    .title {
      color: rgba(255, 255, 255, 0.5) !important;
      font-family: var(--default-font), sans-serif;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.2rem;
    }
  }
}