@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400&display=swap");

* {
  font-family: "Roboto", sans-serif;
}

#css-tasty-logo {
  width: 10rem;
  display: block;
}

.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: #12c2e9;
}
/* header section */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
/* section main section */
section {
  margin-top: 20vh;
  margin-bottom: 3rem;
}

section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.terms {
  color: #000;
  font-weight: bold;
  font-family: "Roboto Mono", monospace;
  display: block;
  margin-bottom: 1rem;
}

.group-items .fs-5 {
  color: #12c2e9;
  text-transform: uppercase;
}
.list-group-item {
  color: #000;
  margin: 1rem 0;
}
.reference-links-container li {
  list-style-type: none;
}
.reference-links-container li a {
  text-decoration: none;
  color: #12c2e9;
}

/* footer section */
footer {
  background-color: #393e46;
}

.footer-nav {
  width: 50%;
}

.footer-nav-links {
  text-decoration: none;
  color: #12c2e9;
  transition: 0.3s;
}

.footer-nav-links:hover {
  color: #fff;
}

.footer-social-media {
  width: 25%;
}

.footer-social-media-icons i {
  font-size: 1.5rem;
  color: #12c2e9;
}

.footer-social-media-icons i:hover {
  color: #fff;
}

#copyright {
  color: rgba(255, 255, 255, 0.489);
  font-size: 0.8rem;
}

@media only screen and (max-width: 600px) {
  header,
  section,
  footer {
    padding: 0 1.5rem;
  }

  section .container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-social-media,
  #copyright,
  #css-tasty-logo {
    margin: 1rem auto;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-social-media {
    width: 50%;
  }
}
