@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

#pageframe {
  height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body {
  font-family: "Roboto Mono", monospace;
  font-weight: lighter;
  background: rgb(243, 238, 234);
  /* background: linear-gradient(
    90deg,
    rgba(243, 238, 234, 1) 0%,
    rgba(237, 233, 241, 1) 63%,
    rgba(212, 197, 224, 1) 100%
  ); */
  overflow-x: hidden;
  cursor: url(cursor.png), auto;
}

a {
cursor: url(cursor_hover.png), pointer;
}

.intro {
  font-family: "Raleway", sans-serif;
  color: #150121;
  text-shadow: 2px 2px 8px rgb(218, 186, 241);
  font-size: 3.5rem;
  line-height: 10rem;
  letter-spacing: 0.25rem;
  text-align: left;
  margin-top: 4.3rem;
  margin-left: 8rem;
  position: relative;
  z-index: 1;
}

.intro {
  transform: translateX(-100%);
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
  z-index: 2;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0); 
    opacity: 1;
  }
}

.intro1 {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin-top: 4.3rem;
  margin-right: 1.9rem;
  gap: 0.6rem;
  overflow: hidden;
  transform: translateX(100%);
  opacity: 0;
  animation: slideInRight 1s ease forwards;
}


@keyframes slideInRight {
  to {
    transform: translateX(0); 
    opacity: 1;
  }
}

@keyframes growLine {
  to {
    transform: scaleX(1); 
    opacity: 1; 
  } 
}

.intro1 p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: -4px;
}

.scroll-link {
  display: inline-block;
  text-decoration: none;
  text-decoration: none;
  font-size: 1.25rem;
  color: black;
  font-weight: bolder;
  text-shadow: 3px 4px 1px rgb(199, 143, 238);
  margin-top: -0.6rem;
}

.scroll-link:hover {
  color: #8d4daf;
}

.line {
  width: 25rem;
  height: 1px;
  border: none;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  animation: growLine 1s ease forwards;
  animation-delay: 1.1s;
}

.dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.3s ease;
  z-index: -1;
}

h1 {
  position: relative;
  z-index: 2;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  height: fit-content;
  background: rgb(243, 238, 234);
  /* background: linear-gradient(
    90deg,
    rgba(243, 238, 234, 1) 0%,
    rgba(237, 233, 241, 1) 63%,
    rgba(212, 197, 224, 1) 100%
  ); */
  color: black;
  z-index: 100;
}

header ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 1.8rem;
}

header ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  color: black;
  font-weight: bolder;
  text-shadow: 3px 4px 1px rgb(199, 143, 238);
  padding: 1.25rem;
}

header ul li a:hover {
  color: #8d4daf;
}

#aboutMe,
#skills,
#projects,
#contact {
  margin-top: 30px;
  padding: 40px;
}

h2 {
  font-family: "Raleway", sans-serif;
  letter-spacing: 2px;
  font-size: 2.5rem;
  color: #202020d5;
  background: none;
  margin-left: 8.5rem; /*+25px border */
  padding: 0.6rem;
  border: 25px solid transparent;
}

#aboutMe {
  margin-top: 120px;
  height: 25rem;
  max-height: 60vh;
}

.aboutMe {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-left: 8rem;
  max-height: 50vh;
}

.aboutMe .photo {
  height: auto;
  width: 20%;
  margin-top: 2.5rem;
  margin-left: 8rem;
  object-fit: cover;
  border-radius: 40%;
  box-shadow: 5px 4px 15px rgb(157, 143, 238);
}

.gif1 {
  vertical-align: -12px;
  margin-left: -0.4rem;
  margin-right: 3px;
  height: auto;
  width: 6%;
}

span {
  background-color: #6063ee37;
  border-radius: 25%;
  font-weight: 300;
  text-shadow: none;
}

.text-container1 {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  text-shadow: 3px 2px 4px rgb(175, 117, 217);
  font-size: 1rem;
  font-weight: 140;
  padding: 2.5rem;
  /* background: rgb(222,215,235); */
  border-radius: 40px;
}

.text-container1 :nth-child(1) {
  word-spacing: 0.7rem;
}

.text-container1 :nth-child(2) {
  margin-top: -2rem;
}

.wave-container {
  position: relative;
  width: 100%;
  height: auto;
}

.wave {
  position: absolute;
  width: 100%;
  height: auto;
}

.wave2 {
  top: 2.5rem;
}

#skills {
  margin-top: 12.5rem;
  background-color: rgb(222,215,235);
}

.skills-p {
  font-size: 1.3rem;
  display: flex;
  margin: 0;
  justify-content: center;
  border-radius: 30px;
  text-shadow: 3px 2px 4px rgb(175, 117, 217);
}

#skills p {
  text-align: center;
  width: 50vw;
  z-index: 10;
}

.gif2 {
  position: relative;
  top: 0.6rem;
  height: auto;
  width: 9%;
  margin-right: -0.6rem;
}

.text-container2 {
  display: flex;
  justify-content: center;
  gap: 20%;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  text-shadow: 3px 2px 4px rgb(175, 117, 217);
  font-size: 1rem;
  font-weight: 140;
}

.text-container2 .html, 
.text-container2 .css {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 30%;
  padding: 1.25rem;
  background-color: rgb(255, 255, 255);
  border-radius: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.text-container2 .html, 
.text-container2 .css {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-container2 .html:hover,
.text-container2 .css:hover {
  transform: translateY(10px);
  box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.8);
}

.html  div, .css div {
  width: 100%;
  padding: 10px;
}

#projects {
margin-top: -4rem;
}

#projects h2 {
  text-align: center;
  font-size: 4.5rem;
}

.text-container3 {
  display: flex;
  margin-left: 13%;
  margin-top: 4rem;
  flex-direction: row;
  gap: 4rem;
  width: 80%;
  text-shadow: 3px 2px 4px rgb(175, 117, 217);
  font-size: 1rem;
  font-weight: 150;
}

.inner-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 40%;
}

.text-container3 img {
  width: 20%;
  height: 20%;
  filter: blur(5px);
  transition: filter 1.5s ease;
}

.text-container3 img:hover {
  filter: blur(0);
}

#paragraph3 {
margin-top: 6rem;
width: 40%;
}

#contact {
  width: 100%;
  justify-items: center;
  text-shadow: 3px 2px 4px rgb(175, 117, 217);
  font-size: 1rem;
  font-weight: 150;
}

#contactpar1 {
  text-align: center;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 25rem;
  height: auto;
  border: 5px solid rgb(206, 194, 229);
  border-top-left-radius: 23px 100px;
  border-top-right-radius: 23px 100px;
  border-bottom-left-radius: 120px 24px;
  border-bottom-right-radius: 120px 24px;
  margin-top: 3rem;
  padding: 10px;
}

.contact a {
  text-decoration: none;
  color: #150121;

}

.contact a:hover {
  letter-spacing: 3px;
}

.cvlinkedin {
display: flex;
gap: 1rem;
}

#cv, #linkedin {
  width: 2rem;
  height: auto;
}


