div.tile {
  padding: 5px;
}
div.search {
  position: relative;
  display: block;
  width: 100%;
  background-color: black;
  padding: 5px;
  border: solid 2px rgb(92, 173, 226);
  box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  max-width: 300px;
  margin: 0px auto -29px;
  z-index: 3;
}
.mobile div.search {
  max-width: none;
  margin: 0px auto 0px;
}
div.project {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5px;
  border: solid 2px rgb(92, 173, 226);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
div.project > a {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
}
div.project div {
  margin: 0px;
  padding: 5px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  border-top: 2px solid rgb(92, 173, 226);
}
div.project div p {
  margin: 0px;
}
div.project div h2.title {
  font-size: 24px;
  border-bottom: 1px solid rgb(92, 173, 226);
  margin-top: -5px;
  padding-bottom: 5px;
  text-align: center;
}
div.project div p.description {
  min-height: 44px;
  text-align: center;
}
div.project div p.tags {
  font-style: italic;
  font-size: 14px;
  color: #59C;
  text-transform: lowercase;
  text-align: center;
}

/* Individual Pages */
div.panel.head {
  text-align: center;
}
div.panel.head h1 {
  line-height: 90%;
}
div.panel.head div.byline {
  font-style: italic;
  margin-top: 3px;
}
div.panel.head div.byline span:first-of-type {
  margin-right: 10px;
}
div.panel.head div.namepending {
  font-style: italic;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.7;
  margin: 0px 0px 0px 0px;
  padding: 0px;
}
div.panel.head .btn {
  margin-top: 10px;
}
div.panel.head h1 {
  font-size: 52px;
}
div.panel.head p {
  font-size: 20px;
}
div.panel.head.backdrop {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* color: #DDD; */
  border: none;
}
div.panel p {
  text-align: justify;
}
div.panel ul {
  padding-left: 20px;
}
div.panel:not(:last-of-type) {
  margin-bottom: 10px;
}
div.panel.devshots h1 {
  margin-bottom: 10px;
}
div.panel.devshots .devshot {
  background-color: rgba(10, 22, 43, 0.945);
  border-radius: 5px;
  padding: 5px;
  color: #DDD;
  margin: 0px 0px 30px;
}
div.panel.devshots .devshot video {
  margin: 0px;
  border-radius: 3px;
}
div.panel.devshots .devshot img {
  margin: 0px;
  border-radius: 3px;
  width: 100%;
}
div.panel.devshots .devshot p {
  margin: 0px;
  padding: 0px 5px;
}
div.panel.devshots .devshot p.date {
  margin: 3px -5px -5px;
  padding: 0px 10px;
  border-top: 2px solid rgb(108, 132, 182);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #DDD;
  font-style: italic;
  text-align: right;
}
h3 .status {
  font-size: 12px;
  font-style: italic;
  vertical-align: middle;
}
h3 .status::before {
  content: '(';
}
h3 .status::after {
  content: ')';
}
div.panel ul.changelog {
  list-style: none;
  padding: 0px;
}
div.panel ul.changelog li {
  padding-left: 10px;
}
div.panel ul.changelog li::before {
  display: inline-block;
  width: 10px;
  margin-left: -10px;
  text-align: center;
}
div.panel ul.changelog li.feature::before {
  content: '+';
}
div.panel ul.changelog li.removal::before {
  content: '-';
}
div.panel ul.changelog li:not(.feature):not(.removal)::before {
  content: '*';
}