@charset "UTF-8";
/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
  font-family: 'relative-mono10pitch';
  src: url("../fonts/relative-mono10pitch.eot");
  src: url("../fonts/relative-mono10pitch.eot") format("embedded-opentype"), url("../fonts/relative-mono10pitch.html") format("woff2"), url("../fonts/relative-mono10pitch.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* HTML & BODY
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/*  html is set to 62.5%  –– REM based on 10px –– 1.5rem = 15px */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "relative-mono10pitch", "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: none;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  line-height: 1.2;
  color: black;
  padding: 0px;
  margin: 0px;
  overflow-y: auto;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6, p, li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, table, tbody, tr, td {
  font-family: "relative-mono10pitch", "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: none;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

@media (min-width: 992px) {
  h1, h2, h3 {
    font-family: "relative-mono10pitch", "Roboto Mono", monospace;
    font-weight: 400;
    text-transform: none;
    font-size: 2.4rem;
    letter-spacing: 2px;
    line-height: 1.14;
  }
}

h4, h5, h6, p, li {
  font-family: "relative-mono10pitch", "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: none;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.type-l {
  font-family: "relative-mono10pitch", "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: none;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.14;
}

.rich-text p {
  font-family: "relative-mono10pitch", "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: none;
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: 1.14;
}

.rich-text p a {
  text-decoration: none;
  color: #2196F3;
}

.rich-text p a:hover {
  text-decoration: underline;
  color: #2196F3;
}

/* About, Collection, Index
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
#info-container, #collection-container, #index-container {
  padding: 0px 5px;
  padding-bottom: 64px;
}

#info-container h2, #collection-container h2, #index-container h2 {
  margin: 112px 5px 64px 5px;
}

#info-container p, #collection-container p, #index-container p {
  margin: 0px 5px 16px 5px;
}

#info-container div.column, #collection-container div.column, #index-container div.column {
  padding: 0px 5px;
}

#showIndex, #showCollection, #showInfo {
  visibility: hidden;
}

#index-container, #collection-container, #info-container {
  background-color: #FFF;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 90;
  overflow-y: auto;
}

/* Index
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.index-item {
  background-color: #F5F5F5;
  color: black;
  border-radius: 5px;
  margin: 5px;
}

.index-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index-head img {
  margin: 2px 10px 5px 0px;
}

.index-space {
  margin-top: 64px;
}

/* Masonry Layout Collection
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 25%;
}

.grid-item {
  float: left;
  margin-bottom: 10px;
}

.grid-item img {
  display: block;
  max-width: 100%;
  cursor: pointer;
  border-radius: 5px;
}

.modal {
  z-index: 3;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: none;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-flex {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-flex img {
  border-radius: 5px;
}

.modal-content {
  width: 75%;
}

.modal-content img {
  width: 100%;
}

/* Images
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.img-fluid {
  width: 100%;
}

/* Starting Modal
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.starting-modal {
  background-color: black;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19), 0 5px 5px rgba(0, 0, 0, 0.23);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19), 0 5px 5px rgba(0, 0, 0, 0.23);
  position: fixed;
  z-index: 100;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px;
  width: calc(100% - 20px);
  height: 300px;
  top: 45px;
}

.starting-modal h4, .starting-modal p {
  color: #FFF;
}

.starting-modal h4 {
  padding-bottom: 10px;
}

.starting-modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 10px;
  height: 35px;
}

.starting-modal-head .modal-close {
  cursor: pointer;
  margin-top: -5px;
  margin-left: auto;
  margin-right: -4px;
}

@media (min-width: 992px) {
  .starting-modal {
    width: 410px;
    height: 500px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.starting-modal-content {
  height: calc(300px - 35px);
  overflow: auto;
}

.starting-modal-content p {
  padding: 0px 10px 10px 10px;
}

.starting-modal-content p:last-of-type {
  padding-top: 10px;
}

@media (min-width: 992px) {
  .starting-modal-content {
    height: calc(500px - 35px);
  }
}

/* LINKS
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  text-decoration: none;
  color: black;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  color: #2196F3;
}
/*# sourceMappingURL=basestyles.css.map */