@import url("https://fonts.googleapis.com/css2?family=IM+Fell+English&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  list-style-type: none;
}

html {
  background: transparent;
}

html,
body {
  color: #ffffff;
  width: 100%;
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  -webkit-overflow-scrolling: touch;
  background-color: #101010;
  background-image: url("https://closet.moonshotdesignco.com/cm/bg/eastroom.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

#core {
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
  min-height: 100%;
}

.dim {
  background: rgba(0, 0, 0, 0.75);
}

#bgdiv {
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center 33%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://closet.moonshotdesignco.com/cm/bg/bg2022-06.jpg");
}

@keyframes colorwheel {
  0% {
    filter: hue-rotate(0);
  }
  100% {
    filter: hue-rotate(1turn);
  }
}
a {
  color: inherit;
  transition: filter 200ms linear;
}

a:hover,
a:focus,
a:active {
  filter: blur(4px);
}

.bgblack {
  background: #101010;
}

.bgwhite {
  background: #ffffff;
}

.bgred {
  background: #ff4040;
}

.bghoverwhite:hover {
  background: #ffffff;
}

.bghoverblack:hover {
  background: #101010;
}

.p50 {
  padding: 0.5rem;
}

.m50 {
  margin: 0.5rem;
}

.m20p {
  margin: 20px;
}

.ml0 {
  margin-left: 0px;
}

.mb20p {
  margin-bottom: 20px;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.h40p {
  height: 40px;
}

.op50 {
  filter: opacity(0.5);
}

.pfixed {
  position: fixed;
}

.prelative {
  position: relative;
}

.pabsolute {
  position: absolute;
}

.pbottomright {
  bottom: 0px;
  right: 0px;
}

.ptopright {
  top: 20px;
  right: 0px;
}

.pbottomleft {
  bottom: 0px;
  left: 0px;
}

.dflex {
  display: flex;
}

.dflexcol {
  flex-direction: column;
}

.dgrid {
  display: grid;
}

.pcentered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dflexcentered {
  justify-content: space-evenly;
  align-items: center;
}

.tcentered {
  text-align: center;
}

.tright {
  text-align: right;
}

.dflexspacebetween {
  justify-content: space-between;
}

.z10 {
  z-index: 10;
}

.z5 {
  z-index: 5;
}

.z0 {
  z-index: -1;
}

.big {
  font-size: 3rem;
}

.big2 {
  font-size: 2rem;
}

.bigger {
  font-size: 4rem;
}

.small {
  font-size: 0.75rem;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: 900;
}

.spaced {
  letter-spacing: 0.5rem;
}

.midspaced {
  letter-spacing: 0.25rem;
}

.dblock {
  display: block;
}

.dinblock {
  display: inline-block;
}

.dinline {
  display: inline;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.wires {
  max-width: 100%;
}

.logoblock {
  padding-left: 20px;
  padding-top: 20px;
}

.logo {
  width: 100%;
  padding-right: 20px;
}
@media (min-width: 700px) {
  .logo {
    width: unset;
    max-width: 100%;
    height: 200px;
    padding-right: 60px;
    padding-bottom: 20px;
  }
}

.inv {
  filter: invert(1);
}

.photolist img {
  width: 100%;
}
@media (min-width: 1200px) {
  .photolist img {
    width: 50%;
  }
}

.videolist iframe {
  width: 100%;
  height: 50vw;
}
@media (min-width: 1200px) {
  .videolist iframe {
    width: 50%;
    height: 25vw;
  }
}

.copyrightblock {
  padding-bottom: 40px;
  text-transform: lowercase;
}

/* MODAL */
@media (max-width: 900px) {
  .big {
    font-size: 2rem;
  }
  .big2 {
    font-size: 1.66rem;
  }
  .bigger {
    font-size: 2.75rem;
  }
}