:root {
  --primary-color: #f9f7fe;
  --secondary-color: #6c63ff;
  --default-font-family: "Poppins", sans-serif;
  --heading-font-family: "Playfair Display", serif;
}

h1 {
  font-family: var(--heading-font-family);
  font-size: 96px;
  font-weight: bold;
  line-height: 1.5;
}

h2 {
  font-size: 64px;
  font-family: var(--heading-font-family);
  font-weight: bold;
}

h3 {
  font-size: 48px;
  font-family: var(--heading-font-family);
}

p {
  font-size: 16px;
  font-family: var(--default-font-family);
  line-height: 30px;
}

.hero h2 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
}

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

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

.btn-branding {
  font-family: var(--default-font-family);
  color: white;
  font-size: 18px;
  border-radius: 4px;
  line-height: 27px;
  background-color: var(--secondary-color);
  padding: 15px 30px;
}

.btn-branding-outline {
  font-family: var(--default-font-family);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  font-size: 18px;
  border-radius: 4px;
  line-height: 27px;
  padding: 15px 30px;
}

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

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

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

  nav a {
    font-size: 14px;
  }

  .nav-list {
    display: flex;
    justify-content: center;
  }
}

.content-container {
  padding: 60px 20px;
}

.content {
  margin: 30px;
}
.content h1 {
  font-size: 64px;
  line-height: 70px;
}

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

.content h3 {
  font-size: 24px;
  font-family: var(--default-font-family);

  line-height: 1.5;
}

.logo {
  max-width: 150px;
  border-radius: 8px;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 40px;
  font-family: var(--default-font-family);
  margin-left: 15px;
}

nav a {
  text-decoration: none;
  transition: all 100ms ease-in-out;
  color: #272142;
}

nav a:hover,
nav li.active a {
  color: var(--secondary-color);
}

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

nav {
  padding: 20px 0;
}

footer {
  margin: 60px 0;
}

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

footer .contact-box p {
  margin: 0;
}

footer .email-link {
  text-decoration: none;
  color: black;
  font-family: var(--default-font-family);
  font-size: 24px;
}

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

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

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