.homepage {
  padding: 0 calc(20vw / 2);

  & .homepage-header {
    position: relative;
    width: 100%;
    height: 25vw;
    margin: 10vh 0 calc(10vh + 6rem) 0;

    & .title {
      position: relative;
      width: fit-content;
      height: fit-content;

      & #iam {
        position: relative;
        display: block;
        left: 3rem;
        width: fit-content;
        font-size: 3vw;
        font-weight: 100;
        margin: 0;
        color: var(--color3);
      }

      & #myname {
        display: block;
        font-size: 5vw;
        margin: 0;
        line-height: 4vw;
        text-transform: uppercase;
      }

      & .dom {
        display: block;
        font-size: 2vw;
        font-weight: 100;
        margin: 0;
        text-align: right;
        color: var(--color3);
      }

      & #squareoutline {
        position: absolute;
        top: 0;
        right: -26%;
        width: 15vw;
        height: 25vw;
        z-index: -2;
        background-color: transparent;
        border: 1px solid var(--color3);
        pointer-events: none;

        &::before {
          content: "";
          position: absolute;
          left: -6px;
          width: 100%;
          height: 100%;
          z-index: -1;
          background-color: var(--obsidian);
          clip-path: polygon(
            0 10%,
            2rem 10%,
            2rem calc(50% + 1rem),
            0 calc(50% + 1rem)
          );
        }

        &::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          width: 1.5rem;
          height: 1rem;
          transform: translate(50%, -50%);
          background-color: var(--obsidian);
          border-top: 1px solid var(--color3);
          border-bottom: 1px solid var(--color3);
        }
      }
    }

    & #aboutme {
      position: absolute;
      left: 0.5rem;
      bottom: 0;
      width: 35%;
      margin-top: 2rem;
      font-size: 1.1rem;
      line-height: 1.5rem;
    }
  }

  & .txt-left {
    position: relative;
    margin-bottom: 20vh;

    #square-outline {
      display: flex;
      justify-content: space-around;
      position: absolute;
      top: 3vw;
      left: 0;
      width: 100%;
      height: 4vw;
      z-index: -1;
      border: 1px solid var(--color3);

      & .decorations {
        position: relative;
        bottom: -4vw;
        width: 1rem;
        height: 1.5rem;
        transform: translateY(-50%);
        border-left: 1px solid var(--color3);
        border-right: 1px solid var(--color3);
        background-color: var(--obsidian);
      }
    }

    & #title {
      position: relative;
      left: 10%;
      padding: 0 1vw;
      margin-bottom: 3vw;
      width: fit-content;
      font-size: 5vw;
      background-color: var(--obsidian);
    }

    & .description {
      display: flex;
      align-items: center;
      padding: 0 9vw;

      & #paragraph {
        display: block;
        width: 50%;
        font-size: 1.1rem;
        line-height: 1.5rem;
      }

      & .right-icon {
        margin-left: auto;
        height: 20vw;
        aspect-ratio: 1/1;
        fill: var(--color3);
      }
    }
  }

  & .txt-right {
    position: relative;
    margin-bottom: 20vh;

    #square-outline {
      display: flex;
      justify-content: space-around;
      position: absolute;
      top: 3vw;
      left: 0;
      width: 100%;
      height: 4vw;
      z-index: -1;
      border: 1px solid var(--color3);

      & .decorations {
        position: relative;
        bottom: -4vw;
        width: 1rem;
        height: 1.5rem;
        transform: translateY(-50%);
        border-left: 1px solid var(--color3);
        border-right: 1px solid var(--color3);
        background-color: var(--obsidian);
      }
    }

    & #title {
      position: absolute;
      left: calc(50% - 1vw);
      padding: 0 1vw;
      margin-bottom: 3vw;
      width: fit-content;
      font-size: 5vw;
      text-align: right;
      background-color: var(--obsidian);
    }

    & .description {
        display: flex;
        align-items: center;
        padding: 0 9vw;
        padding-top: 12%;
  
        & #paragraph {
          display: block;
          width: 50%;
          font-size: 1.1rem;
          line-height: 1.5rem;
        }
  
        & .left-icon {
          margin-right: auto;
          height: 20vw;
          aspect-ratio: 1/1;
          fill: var(--color3);
        }
      }
  }
}