@font-face {
    font-family: 'MMFont';
    src: url('font/Montserrat-Medium.ttf');
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
body {
  background: #252525;
  color: #ddd;
  min-width: 1000px;
  -webkit-font-smoothing: antialiased;
  font-family: "MMFont", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-rendering: optimizeLegibility;
}
ul {
  padding-left: 50px;
}
.logo-image {
  margin-left: 20px;
  margin-top: 10px;
  width: 60px;
  height: 60px;
}
.header-item {
  display: inline-block;
  text-decoration: none;
  color: #ddd;
  font-size: 16px;
  line-height: 60px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.header-item.selected {
  text-decoration: underline;
}
.header-item:hover {
  text-decoration: underline;
  cursor: hand;
  cursor: pointer;
}
.header-container {
  width: 1000px;
  height: 80px;
  margin: auto;
  background-color: #353535;
  box-shadow: 0px 0px 10px black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position:relative;
  z-index:1;
}
.menu-container {
  float: right;
  margin-right: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.content-container {
  width: 980px;
  margin: auto;
  text-align: center;
  background-color: #303030;
  box-shadow: 0px 0px 10px black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.code-text {
  font-family: monospace;
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px;
}
.code-text-with-bg {
  font-family: monospace;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 1px;
  padding-bottom: 2px;
  background-color: #252525;
  border-radius: 5px;
}
.header-text {
  font-family: monospace;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 20px;
  color: #fff;
  background-color: #252525;
  border-radius: 5px;
  width: 300px;
  margin: auto;
}
.ext-link {
  color: #ddd;
}
.footer-container {
  text-align: center;
}
.footer-item {
  display: inline-block;
  text-decoration: none;
  color: #ddd;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
