:root {
  --primary-color: #9772f3;
  --secondary-color: #f9f7fe;
}
body {
  max-width: 800px;
  margin: 20px auto;
  font-family: "Manrope", sans-serif;
}
.custom-navigation {
  background: var(--secondary-color);
}
.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 160px 20px;
  border-radius: 10px;
}
p {
  line-height: 30px;
  margin: 25px 0px;
}
h1,
h3 {
  text-align: center;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 15px;
  font-weight: normal;
}
h4 {
  font-size: 48px;
}
.button {
  color: white;
  background: var(--primary-color);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.button:hover {
  color: white;
}
img {
  width: 300px;
  border-radius: 10px;
}
.skills-img {
  width: 50px;
  margin-bottom: 20px;
}
.weather-app-img {
  margin-left: 90px;
}
.icon {
  font-size: 50px;
  color: var(--primary-color);
}
.about-section {
  padding: 50px 20px;
}

footer {
  margin: 60px 0;
}
.contact-box {
  background: var(--secondary-color);
  padding: 10px 120px;
  border-radius: 10px;
}
.contact-box {
  margin: 0;
}
.email-link {
  text-decoration: none;
  color: black;
  font-size: 24px;
}
.email-link:hover {
  color: var(--primary-color);
}
.social-links a {
  margin: 0 20px;
  color: var(--primary-color);
  background: var(--secondary-color);
  padding: 10px 14px;
  font-size: 18px;
  border-radius: 50%;
}
.social-links a:hover {
  color: white;
  background: var(--primary-color);
}
@media (max-width: 576px) {
  h2,
  p {
    text-align: center;
  }
  a {
    display: flex;
    justify-content: center;
  }
  .icon {
    display: flex;
    justify-content: space-evenly;
  }
}
