@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

button, input, select, textarea {
  margin: 0;
  outline: 0 !important;
}

button {
  padding: 0;
  background: none;
  border: none;
}

button::-moz-focus-inner, input::-moz-focus-inner, select::-moz-focus-inner, textarea::-moz-focus-inner {
  border: 0;
}

button, input, select {
  vertical-align: middle;
}

ul {
  list-style: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  min-height: 100%;
  padding: 60px 0 40px;
  font-size: 1.6rem;
  font-family: Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  background-color: #faf9f8;
  overflow-x: hidden;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.noheader {
  padding-top: 0;
}
body.nofooter {
  padding-bottom: 0;
}

img {
  border: 0;
  display: inline-block;
  max-width: 100%;
}

a {
  color: #3ea29d;
  transition: color 0.1s;
}
a:hover, a:focus, a:active {
  color: #7accc8;
}

button,
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #dedede;
  border: 1px solid #dedede;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-family: Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s, border-color 0.1s;
}
button:hover, button:focus, button:active,
.button:hover,
.button:focus,
.button:active {
  border-color: #6b6b6b;
  background-color: #6b6b6b;
  color: #fff;
}
button-dark,
.button-dark {
  border-color: #444;
  background-color: #444;
  color: #fff;
}
button-dark:hover, button-dark:focus, button-dark:active,
.button-dark:hover,
.button-dark:focus,
.button-dark:active {
  border-color: #bbb;
  background-color: #bbb;
  color: #444;
}
button-bold,
.button-bold {
  border-color: #3ea29d;
  background-color: #3ea29d;
  color: #fff;
}
button-bold .ic svg,
.button-bold .ic svg {
  stroke: #fff;
}
button-bold:hover, button-bold:focus, button-bold:active,
.button-bold:hover,
.button-bold:focus,
.button-bold:active {
  border-color: #7accc8;
  background-color: #7accc8;
}
button-clear,
.button-clear {
  background-color: transparent;
  border-color: transparent;
  text-decoration: underline;
}
button-clear:hover, button-clear:focus, button-clear:active,
.button-clear:hover,
.button-clear:focus,
.button-clear:active {
  border-color: #dedede;
  background-color: #dedede;
  color: #444;
  text-decoration: none;
}

header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #dedede;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  border-right: 1px solid #dedede;
  text-decoration: none;
}
header .logo img {
  max-height: 35px;
}
header .logo span {
  font-weight: 500;
  color: #444;
}
header .recent {
  align-self: center;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 5px;
  font-size: 1.3rem;
}
header .recent-title {
  font-weight: 500;
  color: #6b6b6b;
}
header .recent-list {
  display: flex;
  gap: 80px;
}
header .recent-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #444;
}
header .recent-item:hover, header .recent-item:focus, header .recent-item:active {
  color: #3ea29d;
}
header .recent-category {
  font-size: 1.1rem;
  line-height: 1;
}
header .recent-name {
  line-height: 1.1;
  font-weight: 500;
}
header .vsi {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid #dedede;
}
@media all and (max-width: 850px) {
  header {
    grid-template-columns: auto 1fr;
  }
  header .recent {
    display: none;
  }
  header .vsi {
    justify-self: end;
  }
}
@media all and (max-width: 580px) {
  header .vsi {
    border-left-width: 0;
  }
}
@media all and (max-width: 460px) {
  header {
    grid-template-columns: 1fr;
  }
  header .vsi {
    display: none;
  }
}

main {
  position: relative;
  padding: 20px;
}
main.nopadding {
  padding: 0;
}
main.centered {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
main h1,
main h2 {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 2.8rem;
}
main h1 + h2 {
  margin-top: -20px;
  font-size: 2rem;
}
main p {
  max-width: 80ch;
}
main * + p {
  margin-top: 20px;
}
main ul {
  list-style-type: circle;
}
main ul li {
  margin-left: 1em;
}
main .box {
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 4px;
}
main .box.nopadding {
  padding: 0;
}
main .box:last-child {
  margin-bottom: 0;
}

footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  padding: 0 20px;
  background-color: #fff;
  border-top: 1px solid #dedede;
  font-size: 1.3rem;
}
footer .logo {
  justify-self: center;
}
footer .logo a {
  display: flex;
  align-items: center;
  width: 24px;
}
footer .contact {
  justify-self: end;
}
footer .contact a {
  font-weight: 500;
}
@media all and (max-width: 850px) {
  footer {
    grid-template-columns: 1fr auto 1fr;
    font-size: 1.2rem;
  }
}
@media all and (max-width: 580px) {
  footer .copyright-vsi,
footer .contact-intro {
    display: none;
  }
}

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