@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Roboto+Condensed:400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, header, button {
  font-family: "Roboto Condensed", sans-serif;
}

p, div, a, span, li {
  font-family: "Open Sans", sans-serif;
}

input, a, button, textarea {
  outline: none;
}

.header-bar {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
  height: 70px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1023px) {
  .header-bar {
    height: 140px;
    width: 140px;
  }
}
.header-bar svg {
  width: 60px;
}
@media screen and (min-width: 1023px) {
  .header-bar svg {
    width: 80%;
    height: 80%;
  }
}

footer {
  background-color: #efefef;
  color: #979797;
  text-align: center;
  font-size: 13px;
  line-height: 2;
  padding: 15px 0;
}
@media screen and (min-width: 1023px) {
  footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    height: 100px;
    font-size: 16px;
  }
}
footer a {
  font-weight: 600;
  text-decoration: none;
  color: #333333;
}

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