:root {
  --primary-color: #132743;
  --secondary-color: #fff5f5;
  --third-color: #407088;
  --default-font-family: "Poppins", sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-weight: bold;
}

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

h2 {
  font-size: 30px;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
}
.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 160px 20px;
}
.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: var(--primary-color);
}
.hero h2 {
  font-weight: normal;
  line-height: 1.5;
  font-size: 24px;
  color: var(--primary-color);
}

.content-container {
  padding: 100px 15px;
  margin: 0 auto;
  max-width: 1200px;
  color: var(--primary-color);
}

.content-container img {
  border-radius: 10px;
}

.content-container h1 {
  font-size: 64px;
  line-height: 80px;
}

.content-container h2 {
  font-size: 18px;
}
.content {
  margin: 30px;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}

.btn-primary:hover {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: white;
}

.project-info {
  color: var(--primary-color);
  font-weight: normal;
  font-size: 24px;
}

.btn-launch-app {
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  font-size: 16px;
  line-height: 27px;
  padding: 10px 30px;
}
.btn-launch-app:hover {
  background: var(--primary-color);
  border: none;
  border-radius: 4px;
  color: white;
}

.btn-projects {
  background: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  font-size: 16px;
  line-height: 27px;
  padding: 10px 30px;
}
.btn-projects:hover {
  background: white;
  border-radius: 4px;
  color: var(--primary-color);
}

.navbar-logo {
  font-weight: bold;
  font-size: 24px;
}

footer {
  margin: 60px 0;
}

footer p {
  font-weight: bold;
  color: var(--primary-color);
}

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

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

/* Homepage Navbar to match hero colour */
body.home .navbar {
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease-in-out;
}

@media (max-width: 960px) {
  h1 {
    font-size: 35px;
    line-height: 2;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 30px;
  }
  .hero {
    padding: 60px 10px;
  }
  .hero p {
    font-size: 20px;
    margin: 0;
    padding: 30px 0 0 0;
  }
  .hero h2 {
    font-size: 16px;
  }
  .feature-project container {
    text-align: center;
  }
  .feature-project-text {
    text-align: center;
  }
  .feature-project-text h3 {
    padding: 30px 0 0 0;
  }
  p {
    padding: 0;
  }
  .project-info {
    font-size: 20px;
  }
  .content-container {
    text-align: center;
    padding: 40px 10px;
  }
  .content-container h1 {
    font-size: 44px;
    line-height: 2;
  }
}
