:root {
  --primary-color: #6c63ff;
  --secondary-color: #f9f7fe;
  --heading-font-family: "PlayFair display" serif;
  --default-font-family: "Poppins" serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font-family);
  text-align: center;
}

h1 {
  font-size: 80px;
  line-height: 1.5;
}

h4 {
  font-size: 48px;
  margin: 0;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
}

.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: normal;
}

.content {
  margin-top: 60px;
}

.content p {
  font-size: 14px;
}
.content h1 {
  font-size: 50px;
  line-height: 80px;
}

.content h2 {
  font-size: 18px;
  font-family: var(--default-font-family);
}

.content h3 {
  font-size: 24px;
  font-family: var(--default-font-family);
}
.greeting-title {
  font-family: var(--default-font-family);
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.greeting-description {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 24px;
  color: #272142;
  line-height: 1.5;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  font-size: 16px;
  line-height: 27px;
  padding: 12px 20px;
}

.btn-outlined {
  color: var(--primary-color);
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  line-height: 27px;
  padding: 12px 20px;
}

.project-description {
  padding: 120px 60px;
}

.logo {
  max-height: 40px;
}

nav {
  padding: 15px 0;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 40px;
  margin-left: 14px;
}

nav a {
  color: #272142;
}

nav a:hover,
nav li.active a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 200ms ease-in-out;
}

footer {
  margin: 50px 0;
}

footer .contact-box {
  background: var(--secondary-color);
  padding: 30px 120px;
  border-radius: 8px;
}

footer .contact-box p {
  margin: 0;
}
footer .email-link {
  text-decoration: none;
  color: black;
  font-size: 24px;
}

footer .email-link:hover {
  color: var(--primary-color);
}

footer .social-links a {
  margin: 0 20px;
  font-size: 18px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 10px 14px;
  transition: all 100ms ease-in-out;
}

footer .social-links a:hover {
  color: white;
  background: var(--primary-color);
}

@media (max-width: 900px) {
  .content h1 {
    font-size: 42px;
  }

  .hero h2 {
    font-size: 20px;
    line-height: 1.5;
  }
  .project-description {
    padding: 0;
    text-align: center;
  }

  .content {
    padding: 0;
    text-align: center;
  }

  nav a {
    font-size: 15px;
  }
}
