:root {
  --primary-color: #35cc9f;
  --secondary-color: #f5f2fe;
  --box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .roboto-slab-bold {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
}
.hero {
  text-align: center;
  margin-top: 50px;
  padding: 50px;
  background: linear-gradient(
    to right,
    rgb(182, 244, 146, 0.25),
    rgba(75, 219, 176, 0.25)
  );
  box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 3px;
  border-radius: 8px;
}

body {
  margin: 60px auto;
}

h1,
h2,
h3 {
  text-align: center;
  margin: 0;
  font-family: "Roboto Slab", serif;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 36px;
  padding: 20px;
}

h3 {
  font-size: 24px;
  opacity: 0.7;
}

p {
  padding: 20px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  font-family: "Lato", sans-serif;
}

.navigation-links {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}

.navigation-links a {
  margin: 20px;
  border-radius: 4px;
  padding: 20px 15px;
  text-decoration: none;
  font-weight: bold;
  text-transform: capitalize;
}

.contact-link {
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
  color: white;
}

.about-link {
  color: var(--primary-color);
  box-shadow: var(--box-shadow);
  border: 2px solid var(--primary-color);
}

.homepage-link {
  color: var(--primary-color);
  text-align: center;
  display: block;
}

.about-paragraphs {
  display: flex;
  margin: 30px 0;
}

.about-paragraphs p {
  margin: 10px;
  padding: 20px;
}

.email-link {
  display: flex;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.btn {
  background: var(--primary-color) !important;
  color: white;
  box-shadow: var(--box-shadow) !important;
}
@media (max-width: 576px) {
  img {
    display: none;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  margin: 20px 0;
}
ul {
  padding-left: 40px;
  text-align: left;
  font-family: "Lato", sans-serif;
}

footer {
  text-align: center;
  margin: 40px 0;
  font-family: "Lato", sans-serif;
}
footer p {
  font-size: 16px;
}
.socials i {
  margin: 0 10px;
  font-size: 24px;
  padding: 10px;
  color: var(--primary-color) !important;
}
.socials a {
  text-decoration: none;
}
