/* Header Font - font-family: "Delius Unicase", cursive; */
/* Content Font - font-family: "Zain", sans-serif; */
:root {
  --main-color: #ffe81f;;
  --background-color: #0d0d0d;
  --page-link-color: rgb(236, 212, 236);
  --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  --border-radius: 10px;
  --opacity: 0.8;
}
body {
  font-family: "Zain", sans-serif;
  background: linear-gradient(181deg,rgba(0, 0, 0, 1) 0%, rgba(34, 34, 35, 1) 100%);
  color: #e0e0e0;
}
.navbar-brand {
  font-family: "Delius Unicase", cursive;
  font-size: 18px;
  font-weight: 600;
}
.navbar-nav {
  font-family: "Zain", sans-serif;
}
.hero {
  background-image: url("stars.jpg");
  background-blend-mode: lighten;
  background-position: no-repeat;
  background-size: contain;
  margin-top: 40px;
}
h1,
h2,
h3 {
  text-align: center;
  margin: 0;
  font-weight: bold;
  color: var(--main-color);
  font-family: "Delius Unicase", cursive;
}
h1 {
  font-size: 76px;
  padding-top: 120px;
}
h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
h3 {
  font-size: 28px;
  padding-top: 20px;
}
p {
  font-family: "Zain", sans-serif;
  font-size: 16px;
  opacity: var(--opacity);
}
.about-section p {
  font-size: 25px;
  letter-spacing: 2px;
  opacity: var(--opacity);
}
.about-section {
  margin-bottom: 50px;
  margin-top: 100px;
}
.navigation-links {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.navigation-links a {
  display: flex;
  border-radius: 4px;
  margin: 20px;
  justify-content: center;
  padding: 10px 15px;
  text-decoration: none;
  text-transform: capitalize;
}
.contact-link {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 50px;
  border-radius: 4px;
  padding: 5px 10px;
  text-decoration: none;
  text-transform: capitalize;
  background: var(--main-color);
  box-shadow: var(--box-shadow);
  color: #000000;
}
.contact-link:hover {
  box-shadow: 0 0 20px 5px #ffe81f;
  background-color: #ffe81f;
  color: black;
}
label {
  border: 1px solid black;
  padding: 2px 10px;
  border-radius: 10px;
  margin: 5px;
  font-size: 14px;
}
.card {
  border: 1px solid var(--main-color);
  box-shadow: 0 0 15px #ffe81f55;
  background-color: #000000;
}
.card-title {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}
.card-text {
  font-size: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}
.primary-link {
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
  background: var(--main-color);
  box-shadow: var(--box-shadow);
  color: #000000;
}
.primary-link:hover {
  box-shadow: 0 0 20px 5px #ffe81f;
  background-color: #ffe81f;
  color: black;
}
.button-container {
  margin-top: 15px;
}
.contact-section a {
  font-size: 38px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
.bg-purple {
  background-color: #6f42c1 !important;
  color: #fff;
}
.bg-pink {
  background-color: #dd2490 !important;
  color: #fff;
}
.bg-orange {
  background-color: #e56008 !important;
  color: #fff;
}
.bg-green {
  background-color: #96d200 !important;
  color: #fff;
}
.bg-teal {
  background-color: #1dc2ce !important;
  color: #fff;
}
img {
  opacity: 0.9;
}
.youtube {
  margin-left: 50px;
}
.sarahs-img {
  border-radius: 50%;
}
.open-source {
  text-decoration: none;
  color: var(--main-color);
  font-weight: bold;
}
@media (max-width: 766px) {
  .primary-link {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 5px;
    max-width: 200px;
  }
  .homepage {
    display: none;
  }
  .card-title {
    text-align: center;
    font-size: 18px;
  }
  .card-text {
    font-size: 14px;
    text-align: center;
  }
  h1 {
    font-size: 38px;
    padding-top: 80px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 16px;
  }
  .email-link a {
    display: block;
    text-align: center;
    font-size: 24px;
  }
  .about-section h3 {
    margin-bottom: 20px;
  }

}
