html, body {
  font-family: Roboto, BlinkMacSystemFont, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, Helvetica, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  background-color: #464646;
  color: rgba(255, 255, 255, 0.9);
}

footer {
  display: block;
  text-align: center;
}

a {
  color: #fc7e22;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: white;
}

nav {
  height: 56px;
  display: flex;
  width: 100vw;
  justify-content: space-between;
  background-color: black;
  padding: 0 5%;
}
nav button.navbar-toggle {
  display: none;
}
nav .navbar-brand {
  display: block;
  height: 100%;
  width: 400px;
  background-color: #fc7e22;
  mask: url(../images/logowhite.webp);
  mask-size: 40%;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask: url(../images/logowhite.webp);
  -webkit-mask-size: 40%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
nav .collapse.nav-links {
  text-align: right;
}
nav .collapse.nav-links ul {
  display: flex;
}
nav .collapse.nav-links ul li {
  color: #fc7e22;
  display: block;
  white-space: nowrap;
}
nav .collapse.nav-links ul li a {
  padding: 18px;
  line-height: 20px;
  display: inherit;
  color: inherit;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
}
nav .collapse.nav-links ul li a:hover {
  text-decoration: none;
}

#error-message {
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  width: 50%;
  margin-left: -25%;
  text-align: center;
}

article.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2em;
  text-align: center;
  padding-top: 40px;
}
article.main div.header h1 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 40px;
  border-bottom: 1px solid rgba(252, 126, 34, 0.24);
  margin: auto;
  padding-bottom: 10px;
}
article.main div.select-product form {
  display: flex;
  gap: 20px;
}
article.main div.select-product select {
  color: black;
}
article.main div.select-product button {
  width: 275px;
}
article.main .licenses {
  text-align: left;
  max-width: 80%;
  margin-bottom: 5em;
  font-weight: 200;
  font-size: 16px;
}
article.main .licenses li {
  list-style: none;
}
article.main .licenses h2 {
  font-size: 34px;
  font-weight: 400;
}

@media (max-width: 700px) {
  nav .navbar-brand {
    display: none;
  }

  .collapse.nav-links {
    width: 100%;
  }
  .collapse.nav-links ul {
    justify-content: space-between;
  }
}

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