@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("../fonts/ZenKakuGothicAntique.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic Antique";
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.banner {
  padding: 4rem;
  background-color: #e1b382;
  color: #fff;
}
.banner h1 {
  font-size: 3em;
}
.banner p {
  font-size: 1.5em;
}

.link-btn {
  padding: 1rem 2rem;
  border-radius: 5px;
  border: 2px solid #e1b382;
  color: #e1b382;
  text-decoration: none;
  transition: 0.25s;
}

.link-btn:hover {
  background-color: #e1b382;
  color: #fff;
}

footer {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e1b382;
  color: #fff;
}

nav {
  width: 100%;
  min-height: 10vh;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav i {
  font-size: 1.5em;
}

.logo {
  font-size: 1.5em;
  color: #e1b382;
  text-decoration: none;
}

.nav-links {
  width: 25%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: #000;
  text-decoration: none;
  transition: 0.25s;
}

.nav-link:hover {
  color: #e1b382;
}

@media screen and (max-width: 900px) {
  .nav-links {
    width: 50%;
  }
}
@media screen and (max-width: 400px) {
  .nav-links {
    width: 75%;
  }
}
section {
  margin: 1rem;
}
section h2 {
  font-size: 2.5em;
}
section article {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section article .description {
  width: 50%;
}
section article .description h3 {
  font-size: 2em;
}
section article .description p {
  font-size: 1.2em;
}
section article .description .apis {
  margin: 1rem 0 3rem 3rem;
}
section article .capture {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section article .capture img, section article .capture video {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

@media screen and (max-width: 1100px) {
  section article {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .description {
    width: 100%;
  }

  .capture {
    margin-top: 2rem;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
