html {
  background: rgb(60, 60, 60);
  font-size: 16px;
}
@media only screen and (max-width : 600px) {
  html {
    font-size: 20px;
  }
}

body {
  font-family: loos-normal, sans-serif;
}
body p {
  margin-bottom: 1.5em;
  line-height: 1.2em;
  color: #ccc;
  font-family: loos-normal, sans-serif;
  font-weight: 400;
}
body strong {
  font-weight: 700;
  color: #fff;
}

#info {
  overflow: hidden;
  background: rgb(60, 60, 60) url(/assets/img/unremarkable/bg_texture.jpg) repeat-y 50% 0;
  background-size: 100% auto;
  text-align: center;
  position: relative;
}
#info .note * {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
#info a {
  color: #FF7424;
}
#info a:hover {
  color: #ff8f4e;
}
#info ul {
  margin-left: 20px;
  padding-bottom: 1em;
  color: #ccc;
}
#info ul li {
  list-style-type: disc;
  list-style-position: inner;
  margin-bottom: 1em;
}
#info #shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
#info .container {
  position: relative;
  overflow: hidden;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width : 900px) {
  #info .container {
    align-items: flex-start;
  }
}
@media only screen and (max-width : 600px) {
  #info .container {
    flex-direction: column;
    padding: 20px;
  }
}
#info .container #close_button {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 30px;
}
#info .container #close_button a {
  display: block;
}
#info .container #close_button a path, #info .container #close_button a svg {
  transition: all 0.1s ease-in-out;
}
#info .container #close_button a:hover path {
  fill: #FF7424 !important;
}
#info .container #close_button a:hover svg {
  transform: scale(1.2);
}
@media only screen and (max-width : 900px) {
  #info .container .note {
    margin-top: 30px;
  }
}
@media only screen and (max-width : 600px) {
  #info .container .note {
    margin-top: 0;
  }
}
#info .container small {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px) saturate(130%);
  color: #aaa;
  display: inline-block;
  padding: 10px 15px 12px 15px;
  border-radius: 10px;
  line-height: 1.2em;
  width: 90%;
}
@media only screen and (max-width : 600px) {
  #info .container small {
    width: calc(100% - 30px);
  }
}
#info .container img {
  width: 60%;
  max-width: 500px;
  aspect-ratio: initial;
  display: block;
  height: auto;
  margin-right: 40px;
  transform: scale(1.2) translateX(5px) translateY(30px);
}
@media only screen and (max-width : 900px) {
  #info .container img {
    width: 40%;
    max-width: none;
    margin-right: 30px;
    transform: scale(1.2) translateX(10px) translateY(30px);
  }
}
@media only screen and (max-width : 600px) {
  #info .container img {
    margin: 0 auto;
    width: 80vw;
    height: auto;
    transform: scale(1);
  }
}

#header {
  text-align: center;
  background: #fff;
}
#header .container {
  margin: 0 auto;
  max-width: 960px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  position: relative;
}
#header .container #logo {
  width: auto;
  height: 50px;
  margin-right: 20px;
  transform: rotate(-2deg) translateY(5px);
}
#header .container h1 {
  display: none;
}
#header .container h2 {
  text-align: left;
  margin: 0 35px 0 65px;
  transform: rotate(-3.5deg) translateY(-13px);
  font-size: 18px;
  color: #333;
  font-family: loos-normal, sans-serif;
  font-weight: 400;
}
#header .container #info_button {
  position: absolute;
  right: 20px;
}
#header .container #info_button #info_filled_icon path {
  fill: #FF7424 !important;
}
#header .container #info_button a path, #header .container #info_button a svg {
  transition: all 0.1s ease-in-out;
}
#header .container #info_button a:hover path {
  fill: #FF7424 !important;
}
#header .container #info_button a:hover svg {
  transform: scale(1.2);
}

#body {
  background: #fff;
}
#body #sketches {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#body #sketches > li {
  width: calc(100% - 40px);
  max-width: 1000px;
  aspect-ratio: 1/1;
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #f3f3f3;
  overflow: hidden;
  opacity: 0;
}
#body #sketches > li img {
  display: block;
  width: 100%;
}
#body #sketches > li img.lazy {
  opacity: 0;
  transition: opacity 5s ease-in;
}
#body #sketches > li img.sketch-loaded {
  opacity: 1;
}
#body #sketches > li ul {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#body #sketches > li ul li {
  text-align: center;
  margin-left: 10px;
}
@media only screen and (max-width : 600px) {
  #body #sketches > li ul li {
    margin-left: 10px;
  }
}
#body #sketches > li ul li a {
  display: block;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(190%) brightness(125%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  padding: 10px;
  vertical-align: middle;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width : 600px) {
  #body #sketches > li ul li a {
    width: 30px;
    height: 30px;
  }
}
#body #sketches > li ul li a svg {
  width: 40px;
  height: 40px;
}
#body #sketches > li ul li a svg #icon_phone path, #body #sketches > li ul li a svg #icon_tablet path, #body #sketches > li ul li a svg #icon_desktop path {
  fill: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width : 600px) {
  #body #sketches > li ul li a svg {
    width: 30px;
    height: 30px;
  }
}
#body #sketches > li ul li a:hover {
  transform: scale(1.2);
}
#body #sketches > li ul li a:active {
  transform: translateY(5px) scale(1.15);
}

#footer {
  background: #fff;
  padding: 20px;
  text-align: center;
}
#footer #mj_logo {
  margin: 0 auto;
}
#footer #mj_logo a svg {
  width: 50px;
}
#footer p.copyright {
  color: #999 !important;
  font-size: 13px;
  text-transform: uppercase;
}
#footer p.copyright strong {
  color: #333;
}
#footer p.copyright a {
  color: #FF7424;
}

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