@import url("https://fonts.googleapis.com/css2?family=Playwrite+AR&family=Playwrite+BE+WAL:wght@350&family=Playwrite+HU:wght@100..400&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
body {
  color: #ededed;
  /* background-color: purple; */
  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  /* background: transparent; */
  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
  display: flex;
  justify-content: space-between;
  align-content: center;
  z-index: 100;
}

.logo {
  position: relative;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  cursor: default;
  font-family: "Playwrite HU", cursive;
  opacity: 0;
  animation: slideRight 0.5s ease forwards;
}

@keyframes slideRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.navbar a {
  display: inline-block;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
  opacity: 0;
  animation: slideTop 0.5s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes slideTop {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.navbar a:hover {
  color: rgb(217, 160, 244);
}
.home {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100vh;
  /* background: url(background.png) no-repeat; */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 70px 10% 0;
}
.img-container {
  display: flex;
  justify-content: space-around;
}
.me-img {
  margin-left: 3rem;
  width: 70%;
  height: 70%;
  border-radius: 250px;
  border: 5px solid white;
  /* box-shadow: 0 0 20px rgb(236, 201, 252); */

  box-shadow: 0 0 5px rgb(236, 201, 252), 0 0 25px rgb(236, 201, 252),
    0 0 50px rgb(236, 201, 252), 0 0 100px rgb(236, 201, 252),
    0 0 200px rgb(236, 201, 252);
}
.me-img:hover {
  transform: scale(1.1);
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.home-content {
  max-width: 600px;
}
.home-content h3 {
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  animation: slideBottom 0.5s ease 0.2s 1 forwards;
}
@keyframes slideBottom {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.home-content h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Playwrite HU", cursive;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight 0.7s ease-out forwards;
  animation-delay: 0.3s;
}
.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 0.7s ease forwards;
  animation-delay: 0.4s;
}

@keyframes slideLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.home-content h3:nth-of-type(2) {
  margin-bottom: 1rem;
  animation: slideTop 0.5s ease forwards;
  animation-delay: 0.5s;
}
.home-content h3 span {
  color: rgb(236, 201, 252);
}
.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background: transparent;
  text-decoration: none;
  color: rgb(236, 201, 252);
  border: 2px solid rgb(236, 201, 252);
  border-radius: 100px;
  font-size: 1.5rem;
  margin: 30px 15px 30px 0;
  transition: 0.5s ease;
  opacity: 0;
  animation: slideLeft 0.5s ease 1 forwards;
  animation-delay: calc(0.15s * var(--i));
}
.home-sci a:hover {
  background-color: rgb(236, 201, 252);
  color: rgb(151, 58, 250);
  box-shadow: 0 0 20px rgb(236, 201, 252);
}

.btn-box {
  display: inline-flex;
  padding: 12px 28px;
  background: rgb(236, 201, 252);
  border-radius: 40px;
  text-decoration: none;
  font-size: 1rem;
  color: rgb(194, 2, 194);
  font-weight: 600;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  animation-delay: 1.5s;
  box-shadow: 0 0 5px rgb(236, 201, 252), 0 0 20px rgb(236, 201, 252);
}
.btn-box:hover {
  box-shadow: 0 0 5px rgb(236, 201, 252), 0 0 25px rgb(236, 201, 252),
    0 0 50px rgb(236, 201, 252), 0 0 80px rgb(236, 201, 252);
  transform: scale(1.1);
}

.about {
  padding: 1.5rem;
  height: 100vh;
  width: 100vw;
  /* background: url(background.png) no-repeat; */
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1.5rem;
}
.about-img {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img img {
  height: 65%;
  width: 65%;
  border-radius: 200px;
  /* padding-bottom: 20%; */
  /* box-shadow: 0 0 5px rgb(236, 201, 252), 0 0 25px rgb(236, 201, 252),
    0 0 50px rgb(236, 201, 252), 0 0 100px rgb(236, 201, 252),
    0 0 200px rgb(236, 201, 252); */
  /* border: 5px solid white; */
}
.about-text p {
  color: rgb(245, 223, 251);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.about-text h2 {
  font-size: 5rem;
}
.about-text h2 span {
  color: rgb(254, 111, 254);
}
.about-text h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #ededed;
  line-height: 2rem;
  margin: 10px 0 20px;
}
#btn-2 {
  margin: 1rem;
}

.services {
  color: #ededed;
  font-size: 1.2rem;
  line-height: 1.3rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.container {
  padding: 2rem;
}
.sub-title {
  text-align: center;
  font-size: 3rem;
  padding-bottom: 2rem;
}
.sub-title span {
  color: rgb(254, 111, 254);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  margin-top: 2rem;
}
.services-list div {
  /* background: transparent; */

  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
  transition: background 0.5s transform 0.5;
  box-shadow: 2px 2px 30px rgba(161, 10, 144, 0.72),
    1px 1px 20px rgb(194, 2, 194), 1px 1px 10px rgb(217, 160, 244);
}

.services-list div:hover {
  transform: scale(1.1);
  transition-duration: 0.1s;
}
.services-list div i {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.services-list h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.services-list div a {
  text-decoration: none;
  color: rgba(161, 10, 144, 0.72);
  font-size: 1rem;
  margin-top: 1rem;
  display: inline-block;
}

.read {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: rgb(217, 160, 244);
  border-radius: 25px;
  font-size: 1.2rem;
  color: rgba(161, 10, 144, 0.72);
  font-weight: 500;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  box-shadow: 0 0 10px rgb(194, 2, 194), 0 0 5px rgb(254, 111, 254);
}

.read:hover {
  box-shadow: 0 0 10px rgb(189, 20, 189), 0 0 20px rgb(236, 201, 252),
    0 0 15px white;
  transform: scale(1.1);
  background-color: rgb(178, 35, 186);
  color: #ededed;
}

.heading-skills {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
}
.heading-skills span {
  margin-left: 0.5rem;
  color: rgb(254, 111, 254);
}
.container-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
}

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

  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
  padding: 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 10px;
  transition: background 0.5s transform 0.5;
  box-shadow: 2px 2px 30px rgba(161, 10, 144, 0.72),
    1px 1px 20px rgb(194, 2, 194), 1px 1px 10px rgb(217, 160, 244);
}
.content-skills:hover {
  transform: scale(1.1);
}
.skill-icon {
  font-size: 3.5rem;
}
.skill-name {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.skill-content {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.main-text {
  padding-top: 2rem;
  margin-top: 2rem;
}
.main-text h2 {
  font-size: 3rem;
  line-height: 1rem;
  text-align: center;
}
.main-text h2 span {
  color: rgb(254, 111, 254);
}
.project-content {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  padding: 3rem;

}

.aClass {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.3rem;
  justify-content: center;
  text-decoration: none;
}
.aClass:hover {
  transform: scale(1.1);
}

#tag {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;

  align-items: center;
  /* border: 1px solid white; */
  border-radius: 25px;
  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
  box-shadow: 2px 2px 30px rgba(161, 10, 144, 0.72),
    1px 1px 20px rgb(194, 2, 194), 1px 1px 10px rgb(217, 160, 244);
}
.row:hover {
  transform: scale(1.1);
}
.row img {
  width: 100%;
  height: 60%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;

  object-fit: cover;
}
.row p {
  margin-bottom: 0.5rem;
}
.layer {
  text-align: center;
  font-size: 1rem;

  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #fdeffd;

  padding: 1rem;
  padding-top: 0;
}
.layer h5 {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideBottom 0.5s ease forwards;
}
.layer i {
  font-size: 1.6rem;
  /* color: #ededed; */
  opacity: 0;
  animation: slideTop 0.5s ease forwards;
}

.layer i:hover {
  transform: scale(1.2);
}
.contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
}
.contact-text {
  margin-bottom: 4rem;
}
.contact-text h2 {
  font-size: 3rem;
  /* line-height: 1.6rem; */
  text-align: center;
}
.contact-text h2 span {
  color: rgb(254, 111, 254);
}
.contact-text h4 {
  margin: 1rem 0;

  color: rgb(214, 151, 253);
  font-size: 1.2rem;
  font-weight: 600;
}
.contact-text p {
  color: rgb(234, 194, 252);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 100;
  margin-bottom: 2rem;
}
.contact-list li {
  list-style: none;
  font-weight: 700;
}
.contact-list a {
  text-decoration: none;
}
.socials {
  display: inline-flex;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  align-items: center;
  color: rgb(236, 201, 252);
  opacity: 0;
  animation: slideRight 0.5s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}
.socials:hover {
  color: rgb(254, 111, 254);
  transform: scale(1.1);
}
.contact-form {
  position: relative;
}
.contact-form form input,
form textarea {
  border: none;
  outline: none;
  width: 90%;
  padding: 0.7rem;
  background: rgb(245, 223, 251);
  font-weight: 400;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
}
.contact-form form .send {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: rgb(217, 160, 244);
  border-radius: 25px;
  font-size: 1.2rem;
  color: rgba(161, 10, 144, 0.72);
  font-weight: 500;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  box-shadow: 0 0 10px rgb(194, 2, 194), 0 0 5px rgb(254, 111, 254);
}

.contact-form form .send:hover {
  box-shadow: 0 0 10px rgb(189, 20, 189), 0 0 20px rgb(236, 201, 252),
    0 0 15px white;
  transform: scale(1.1);
  background-color: rgb(178, 35, 186);
  color: #ededed;
}
.last-section {
  display: flex;
  background-image: radial-gradient(
    circle farthest-corner at 3.2% 49.6%,
    rgba(80, 12, 139, 0.87) 0%,
    rgba(161, 10, 144, 0.72) 83.6%
  );
}
.last-text {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: slideTop 1s ease forwards;
}

.last-text p {
  font-family: "Playwrite HU", cursive;
}
.back-to-top {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: rgb(217, 160, 244);
  border-radius: 25px;
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(161, 10, 144, 0.72);
  font-weight: 500;
  opacity: 0;
  margin-bottom: 1rem;
  animation: slideTop 1s ease forwards;
  box-shadow: 0 0 10px rgb(194, 2, 194), 0 0 5px rgb(254, 111, 254);
}
.back-to-top:hover {
  box-shadow: 0 0 10px rgb(189, 20, 189), 0 0 20px rgb(236, 201, 252),
    0 0 15px white;
  transform: scale(1.1);
  background-color: rgb(178, 35, 186);
  color: #ededed;
}
