/* Scroll bar */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1a1a1a;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1C3C80;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3878ff;
}

body {
  font-family: aktiv-grotesk, sans-serif;
  font-style: normal;
  font-weight: 200;
  margin: 0;
  background: #fafbfc;
  color: #000000;
}

body #bg-container {
  background: url("../res/what-the-hex.png");
  background-image: url("../res/what-the-hex.png");
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  height: 100vh;
}

body .highlight {
  background-color: #3878ff;
  color: #fff;
}

body .text_header {
  color: black;
  font-size: 8vw;
  /* Responsive font size */
  font-weight: bold;
  margin: 0 auto;
  /* Center the text container */
  padding: 10px;
  text-align: center;
  /* Center text */
  position: absolute;
  /* Position text */
  top: 50%;
  /* Position text in the middle */
  left: 50%;
  /* Position text in the middle */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* Position text in the middle */
}

@media (max-width: 600px) {
  body .text_header {
    font-size: 12vw;
  }
}

body a:link {
  text-decoration: none;
}

body a:visited {
  text-decoration: none;
}

body hr {
  height: 0.3rem;
  background-color: #a8e063;
  width: 6rem;
  margin: 0.5rem auto 0 auto;
  border: 0;
}

body .container {
  margin: auto;
  max-width: 700px;
}

body .gradient {
  background: linear-gradient(180deg, #fafbfc 0, #fff 36px);
}

body .gradientPurple {
  background-color: #eaedfb;
}

body .gradientBlue {
  background-color: #3878ff;
}

body .white {
  background-color: #ffffff;
}

body .border {
  background-color: #fff;
  height: 10px;
}

body .borderHalf {
  background-color: #fff;
  height: 5px;
}

.about {
  padding: 3em;
}

.about h1 {
  font-size: 3em;
  font-weight: 600;
}

.about h3 {
  font-size: 2em;
  font-weight: 600;
  color: #3878ff;
}

.about p {
  font-size: 1.2em;
  color: #333333;
}

@media (max-width: 600px) {
  .about p {
    font-size: 1.2em;
  }
}

.duo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 5px;
}

.duo .box {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  margin: 5px;
  padding: 20px;
  text-align: center;
  background-color: white;
}

.duo img {
  width: 200px;
}

.duo p {
  font-size: 1.2em;
}

.duo a {
  font-size: 1.2em;
  color: #3878ff;
  border-bottom: 3px solid #3878ff;
}

.work {
  padding: 3em;
}

.work h1 {
  font-size: 3em;
  font-weight: 600;
}

.work h3 {
  font-size: 2em;
  font-weight: 600;
  color: #3878ff;
}

.work p {
  font-size: 1.3em;
  color: #333333;
}

.work a {
  font-size: 1.2em;
  color: #3878ff;
  border-bottom: 3px solid #3878ff;
}

.work ul {
  list-style-type: none;
  padding: 0;
}

.work li {
  font-size: 1.5em;
  padding-bottom: 5px;
}

.reviews {
  padding: 3em;
}

.reviews h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 600;
}

.reviews h3 {
  font-size: 2em;
  font-weight: 600;
  color: #3878ff;
}

.reviews .quote {
  padding: 20px;
  margin-bottom: 20px;
  background-color: white;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.reviews p.author {
  font-size: 1em;
  color: #585856;
  text-align: right;
}

.footer {
  padding: 3em;
}

.footer h1 {
  font-size: 3em;
  font-weight: 600;
}

.footer h3 {
  font-size: 2em;
  font-weight: 600;
  color: #000000;
}

.footer p {
  font-size: 1.5em;
  color: #333333;
}

.footer a {
  font-size: 1em;
  color: #333333;
  border-bottom: 3px solid #333333;
}
/*# sourceMappingURL=style.css.map */