p{
  text-align: justify;
}

a{
  text-decoration: none;
  transition: all 0.2s;
}

.img-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

h2{
  margin-block: 2rem;
}

.hp-title{
  text-align: center;
  margin-block: 5rem;
}

.hp-title-small{
	margin-bottom: 3rem;
	text-decoration: underline;
}

.hp-name{
  border-top: 2px solid #786292;
  border-bottom: 2px solid #786292;
  
  padding: 2rem;
  font-size: 25px;
}

.hp-main-container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-inline: 5rem;
}

.hp-container{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 7rem;
}

.hp-intro{
  border-top: 3px solid #786292;
  padding-inline: 10rem;
}

.hp-intro p{
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
}

.hp-intro-2{
  border-bottom: 3px solid #786292;
  padding-bottom: 3rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

.lefty{
    height: 365px;
    width: 25%;
    position: sticky;
    top: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sticky-menu{
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 100%;

  border-top: 5px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid transparent;

  border-image: linear-gradient(#786292, #B8A0D4, #FBF1CA) 1;
  animation: cycling-border-animation 8s linear infinite;
  animation-fill-mode: forwards;

  /* Scrollable Menu  */
  overflow-x: hidden;
  overflow-y: scroll ;

  /* Hide scrollbar but keep functionality for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar but keep functionality for Chrome, Safari and Opera */
.sticky-menu::-webkit-scrollbar {
  display: none;
}


@keyframes cycling-border-animation {
  0% {
    border-image-source: linear-gradient(to top, #786292, #B8A0D4, #FBF1CA);
    transform: translateX(0);
  }
  25% {
    border-image-source: linear-gradient(to right, #786292, #B8A0D4, #FBF1CA);
    transform: translateY(0);
  }
  50% {
    border-image-source: linear-gradient(to bottom, #786292, #B8A0D4, #FBF1CA);
    transform: translateX(0);
  }
  75% {
    border-image-source: linear-gradient(to left, #786292, #B8A0D4, #FBF1CA);

    transform: translateY(0);
  }
  100% {
    border-image-source: linear-gradient(to top, #786292, #B8A0D4, #FBF1CA);
    transform: translateX(0);
  }
}

.sticky-menu h1{
  margin-top: 1rem;
  color: linear-gradient(to right bottom, #ffe7d3, #edcfb8, #dbb79e, #c99f86, #b7886e, #b78164, #b77a5b, #b77352, #c87a53, #d98055, #eb8756, #fc8e57);
}

.sticky-menu a{

  font-size: 19px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #FFEFCA;
  transition: all 0.3s;
}

.sticky-menu a:hover{
  color: #B8A0D4;
}

.hp-content{
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about p{
  margin-bottom: 2rem;
}

.hp-1{
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-bottom: 3rem;
}

.hp-2{
  height: 14rem;
  width: 14rem;
  object-fit: contain;
  object-position: top;
  margin-bottom: 3rem;
  border-radius: 15rem;
}


.border-bottom{
  border-bottom: 1px solid #786292;
}

.margin-top{
  margin-top: 10rem;
}

.link-img{
  border-bottom: 2px solid ;
}

.link-img:hover{
  color: #B8A0D4;
}


@media(max-width: 95rem){
  .hp-intro{
    padding-inline: 4rem;
  }
}

@media(max-width: 75rem){
  .hp-intro{
    padding-inline: 0rem;
  }
}

@media(max-width: 829px){
  .hp-intro p{
    font-size: 1.1rem;
  }
}

@media(max-width: 658px){
  .hp-main-container{
    margin-inline: 2rem;
  }

  .hp-intro p{
    font-size: 1rem;
  }
}

@media(max-width: 658px){
  .img-container img{
    transform: scale(0.85);
  }
}

@media(max-width: 494px){
  .img-container img{
    transform: scale(0.70);
  }
}