/* You can either copy the below and paste it between style tags on your HTML page, OR you can copy this to a file and name it .css and link it from your HTML page. */
@font-face {
  font-family: ibm-plex;
  src: url(/assets/fonts/IBMPlexSans-Regular.otf);
}
@font-face {
  font-family: ibm-plex;
  src: url(/assets/fonts/IBMPlexSans-Bold.otf);
  font-weight: bold;
}
html, body {
  padding: 0;
  margin: 0;
  font-family: ibm-plex;
}

body {
  font-size: 12px;
}

header, nav {
  max-width: 100%;
}

aside {
  width: 250px;
  margin-top: 30px;
}

.flex {
  display: flex;
  max-width: 1020px;
}

nav {
  height: auto;
  margin-bottom: 10px;
  background-color: #FFFFFF;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 4px solid #000000;
  border-left: none;
  border-right: none;
}

main {
  width: 1080px;
  margin-left: 20px;
  margin-right: 100px;
}

.current-page-link {
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
}

section {
  margin-bottom: 8px;
  color: #000000;
}

.side-block {
  padding: 12px;
  margin-bottom: 12px;
}

.subtitle {
  border: 1px dashed #000000;
  padding-left: 4px;
  font-weight: bold;
  letter-spacing: 1px;
}

.left-sidebar {
  margin-left: 50px;
}

.title {
  color: #000000;
  font-weight: bold;
  font-size: 28px;
  border: 2px solid #000000;
  margin-bottom: 15px;
  padding: 10px;
}

.page-title {
  color: #000000;
  font-weight: bold;
  font-size: 40px;
}

footer {
  max-width: 1020px;
  text-align: center;
  color: #000000;
}

footer a {
  color: #000000;
}

@media only screen and (max-width: 1020px) {
  .flex {
    flex-wrap: wrap;
  }
  aside {
    display: flex;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
  aside > section {
    margin-right: 10px;
  }
  .nav {
    margin-left: 0 !important;
    margin-right: 50px;
  }
  .nav li {
    padding-bottom: 5px;
  }
}

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