@font-face {
  font-family: 'dejavu_sans_monobook';
  src: url("../font/DejaVuSansMono-webfont.eot");
  src: url("../font/DejaVuSansMono-webfont.eot?#iefix") format("embedded-opentype"), url("../font/DejaVuSansMono-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dejavu_sans_monobold';
  src: url("../font/DejaVuSansMono-Bold-webfont.eot");
  src: url("../font/DejaVuSansMono-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../font/DejaVuSansMono-Bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'dejavu_sans_monobook', sans-serif;
}

h1 {
  font-size: 5em;
}

h2 {
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 15px;
}

a:hover {
  background-color: #65c9ff;
}

.small-img {
  width: 25%;
  float: left;
  margin-right: 30px;
}

ul.navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

ul li {
  display: inline-block;
  margin-right: 20px;
}

ul.left-list li {
  display: block;
}

ul.right-list li {
  display: block;
  margin-left: 20px;
}

ul.tools {
  display: block;
}

.logo {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 20px;
  top: 1em;
  color: white;
  text-transform: uppercase;
}

.grid-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[1];
      grid-template-rows: repeat(1, 1fr);
  margin: 5em auto 0;
  max-width: 1200px;
}

.headline {
  -ms-grid-row-span: 1;
  -ms-grid-column-span: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 1 / 1 / 2 / 5;
}

.image {
  -ms-grid-row-span: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2 / 1 / 3 / 3;
}

.text {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 2 / 3 / 3 / 5;
}

.grid-container-tabs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
}

.grid-container-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  margin-bottom: 50px;
}

.small-img-card {
  width: 15%;
}

.fullwidth {
  width: 100%;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  margin: 20px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  height: 350px;
}

.grid-item2 {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  margin: 20px;
}

.grid-item-without {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 20px;
}

h2.grid-item-without {
  -ms-grid-column-align: left;
  justify-self: left;
  font-size: 3em;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

img {
  width: 100%;
}

.card {
  margin-bottom: 50px;
}

.card h3 {
  color: black;
  padding-bottom: 15px;
}

.card a {
  font-size: 15px;
  float: right;
}

.dashboard-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(400px, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin: 50px auto;
}

.textarea {
  width: 100%;
  height: 200px;
}

span {
  font-family: "dejavu_sans_monobold", sans-serif;
}

.right-list {
  float: right;
  display: block;
  margin-top: -6.1em;
  width: 50%;
}

.left-list {
  display: block;
  width: 25%;
  float: left;
}

footer {
  text-align: center;
}

footer a {
  color: black;
}
@media only screen and (max-width: 900px) {

}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  ul.navlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 50px;
  }
  ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 8px;
  }
  .grid-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .grid-container-tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .grid-container-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  h1 {
    font-size: 2em;
  }
}

@media only screen and (min-width: 1200px) {
  .grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: (1fr)[1];
        grid-template-rows: repeat(1, 1fr);
    margin: 5em auto 0;
    max-width: 1200px;
  }
  .grid-container-tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    max-width: 1200px;
    margin: 0 auto;
  }
  .grid-container-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=master.css.map */