#test{
    width:50%;
}
#par{
    width:100%;
    background-color:black;
}

.page-title{
    color: white;
    font-size: 24px;
}

html, body, #root {
    height: 100%;
    margin: 0;
}

.page, .page * {
    box-sizing: border-box;
}

.page{
    --circle-col-width: 127px;
    --circle-col-gap: 50px;
    position: relative;
    height: 100%;
}

.circle-row{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1;
}

.title-wrap{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    padding-top: 40px;
    z-index: 2;
}



.title-text{
    color: white;
    font-size: 96px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.footer{
    position: absolute;
    left: calc(var(--circle-col-width) + var(--circle-col-gap));
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 420px;
    color: #817777;
}

.socials{
    display: flex;
    gap: 8px;
    color: #888;
}

.icon{
    width: 24px;
    height: 24px;
}

/*footer style sheets*/
.name-title{
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.36px;
  text-align: center;
  color: #dfb7b7;
  margin: 0;
}

.paragraph-text{
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.08px;
  color: rgba(140, 148, 106, 0.55);
  margin: 0;
  max-width: 391px;
}

/*circle style sheets*/

.circle-col{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px; /* adjust spacing */
}


.circle-item{
    width: 127px;
    display: inline-block;
}

.left-col{
    align-items: flex-start;
}

.right-col{
    align-items: flex-end;
    transform: scaleX(-1);
    transform-origin: center;
}

.left-col .circle-item{
    transform-origin: left center;
}

.right-col .circle-item{
    transform-origin: right center;
}

@media (max-width: 768px) {
  .page{
    --circle-col-width: 60px;
    --circle-col-gap: 16px;
    padding: 0 16px 16px;
  }

  .title-text{
    font-size: 48px;
  }

  .circle-row{
    padding: 96px 0 0;
  }

  .circle-col{
    gap: 20px;
  }

  .circle-item{
    width: var(--circle-col-width);
  }

  .footer{
    left: calc(var(--circle-col-width) + var(--circle-col-gap));
    right: calc(var(--circle-col-width) + var(--circle-col-gap));
    bottom: 16px;
    max-width: none;
  }

  .title-wrap{
    padding-top: 16px;
  }
}
/*circle column styles*/
.left-circle-col{
    align-self: flex-end;
}

.right-circle-col{
    align-self: flex-end;
}

/* remove duplicate title styles below */

/*Social Media Icon styles*/
.socials {
  display: flex;
  gap: 8px;
  color: #888; /* icon color */
}

.icon {
  width: 24px;
  height: 24px;
}
