:root {
  --body-font-color: #2b2d42;
  --primary-color: #c2bbf0;
  --seconary-color: #a9a3d3;
  --tertiary-color: #f7f7f7;
  --default-font-family: "Roboto", sans-serif;
  --secondary-font-family: "Noto Serif", serif;
  --section-font-weight: 300;
}

body {
  font-family: var(--default-font-family);
  color: var(--body-font-color);
}

.hero {
  background-color: var(--primary-color);
  font-family: var(--secondary-font-family);
  padding: 150px 0;
  text-align: center;
}

.hero h1 {
  font-size: 75px;
  font-weight: 600;
  letter-spacing: -5px;
}

.hero h2 {
  font-family: var(--default-font-family);
  font-size: 30px;
  font-weight: 400;
  line-height: 3;
}

.hero p {
  font-family: var(--default-font-family);
  font-size: 25px;
  margin: 0;
}

.hero .btn-branding {
  background-color: white;
  border-radius: 5px;
  font-size: 14px;
  line-height: 15px;
  padding: 10px 15px;
}

.hero .btn-branding:hover {
  background-color: var(--seconary-color);
  color: white;
}

.picture-overlay {
  background-image:
    linear-gradient(rgba(194, 187, 240, 0.4), rgba(194, 187, 240, 0.4)),
    url("../images/IMG_2906.JPG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.about-me h3 {
  font-family: var(--secondary-font-family);
  font-size: 25px;
  font-weight: 200;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.about-me h4 {
  color: var(--primary-color);
  font-family: var(--secondary-font-family);
  font-size: 35px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 0;
  text-transform: uppercase;
}

.about-me i {
  color: var(--body-font-color);
  font-size: 60px;
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}

.about-me p {
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(14deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(10deg);
  }
  70% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}

.my-skills,
.contact {
  background-color: var(--tertiary-color);
  padding: 80px;
}

.my-skills h4,
.my-work h4,
.contact h4 {
  font-family: var(--secondary-font-family);
  font-size: 35px;
  font-weight: var(--section-font-weight);
}

.my-skills i,
.my-work i,
.contact i {
  font-size: 25px;
  line-height: 0;
}

.my-skills ul {
  margin: 50px 0;
}

.my-skills li {
  background-color: var(--primary-color);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  display: inline-block;
  font-family: var(--secondary-font-family);
  font-size: 16px;
  font-weight: 500;
  list-style-type: none;
  margin: 0 10px 0 0;
  padding: 15px 20px;
  text-transform: uppercase;
}

.my-work {
  padding: 80px;
}

.my-work h5 {
  font-family: var(--secondary-font-family);
  font-size: 18px;
  font-weight: var(--section-font-weight);
  letter-spacing: -1px;
  margin: 10px 0;
}

.my-work p {
  font-size: 16px;
  line-height: 2;
}

.my-work a {
  color: var(--primary-color);
  line-height: 20px;
  text-decoration: none;
}

.my-work a:hover {
  color: var(--seconary-color);
}

.built-work-styling {
  background-color: var(--seconary-color);
  padding: 5px;
}

.contact-body-style {
  background-color: var(--seconary-color);
  font-family: var(--secondary-font-family);
  font-size: 18px;
  font-weight: 800;
  padding: 10px 50px;
  text-transform: uppercase;
}

a.contact-links {
  color: var(--body-font-color);
}

a.contact-links:hover {
  color: var(--primary-color);
}

.social-icons i {
  color: var(--body-font-color);
  font-size: 2rem;
  transition: transform 0.2s;
}

.social-icons i:hover {
  color: var(--seconary-color);
  transform: scale(1.1);
}

footer {
  background-color: var(--primary-color);
  font-family: var(--secondary-font-family);
  font-size: 10px;
  font-weight: 900;
  padding: 20px;
}

footer a {
  color: var(--body-font-color);
}

@media (max-width: 900px) {
  .hero {
    padding: 100px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 18px;
  }

  .about-me h3 {
    font-size: 20px;
  }

  .about-me h4 {
    font-size: 28px;
  }

  .about-me i {
    font-size: 45px;
  }

  .about-me p {
    font-size: 14px;
  }

  .my-skills,
  .contact {
    padding: 40px;
  }

  .my-skills h4,
  .my-work h4,
  .contact h4 {
    font-size: 28px;
  }

  .my-skills i,
  .my-work i,
  .contact i {
    font-size: 20px;
  }

  .my-skills ul {
    margin: 50px;
  }

  .my-skills li {
    font-size: 14px;
    margin: 10px;
  }

  .my-work {
    padding: 40px;
  }
}
