@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {
  --primary-color: #10b981;
  --secondary-color: #4b5563;
  --grey-color: #e5e7eb;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0.5px;
}

hr {
  margin: 2rem 0rem;
}

.container {
  padding: 0rem;
}

.container-center {
  margin: auto;
  text-align: center;
}

/* links */

.link {
  text-decoration: none;
}

.link-primary {
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  color: whitesmoke;
  width: initial;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.link-secondary {
  display: inline-block;
  color: var(--primary-color);
  border-radius: 0.5rem;
  border: 1px solid var(--primary-color);
  width: initial;
  padding: 0.5rem 1rem;
}

/* list */

.list-non-bullet {
  list-style: none;
}

.list-item-inline {
  display: inline;
  padding: 0rem 0.5rem;
}

/* spaces */

.space-top {
  margin-top: 2.5rem;
}

.space-bottom {
  margin-bottom: 1.5rem;
}

/* Navigation */

.navigation {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
}

.navigation .nav-pills {
  text-align: right;
}

.navigation .nav-brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.navigation .link {
  color: white;
}

.navigation .link-active {
  font-size: larger;
  font-weight: bold;
}

/* header */

.hero {
  padding: 2rem;
  text-align: center;
}

.hero .hero-img {
  max-width: 350px;
  display: block;
  margin: auto;
}

.hero .hero-heading {
  color: var(--secondary-color);
  padding-top: 1rem;
}

.hero .hero-heading .heading-inverted {
  color: var(--primary-color);
}

@media screen and (max-width: 420px) {
  .hero .hero-img {
    max-width: 14rem;
  }
}

/* section */

.section {
  padding: 2rem;
}

.ow {
  background-color: var(--grey-color);
}

/* project */

.project-list:nth-child(2n + 1) {
  background-color: var(--grey-color);
}

.project-list h2 {
  padding-top: 1rem;
}

.project-list a p {
  margin: 0%;
  margin-bottom: 1rem;
}

/* Footer */

.footer {
  background-color: var(--primary-color);
  padding: 2rem 0.5rem;
  text-align: center;
  color: white;
  border-radius: 0.5rem;
}

.footer .link {
  color: white;
}

.footer ul {
  padding-inline-start: 0px;
}

.footer .footer-header {
  font-size: larger;
  font-weight: bold;
}

span {
  color: var(--primary-color);
}
