* {
  font-family: 'Karla', sans-serif;
  margin: 0;
}

/*////////////
/INDEX
/*/
body {
  background-color: #ccc;
  list-style: none;
  /*////////////
/ BOOKMARKS / RESOURCES PAGE
/*/
  /*////////////
/ MUSIC PAGE
/*/
  /*////////////
/ SANDBOX
/*/
  /* CLOCK STYLES */
}

body ul {
  padding: 0;
}

body ul li {
  list-style-type: none;
  margin-bottom: .25rem;
}

body ul li a {
  color: black;
  text-decoration: none;
  position: relative;
}

body ul li a:hover:after {
  content: "";
  border-bottom: 3px solid black;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
}

body h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 2rem;
  margin: 1.5rem 0;
}

body h1:hover {
  position: relative;
  cursor: url("/images/smiles.gif"), auto;
}

body h1:hover:after {
  content: url("/images/jon.png");
  display: block;
  position: absolute;
  right: 0rem;
  top: -6rem;
}

body h2 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

body h3 {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.5rem;
  margin: 1.5rem 0;
}

body #contact {
  height: 100vh;
}

body #sandbox {
  background-color: #ccc;
}

body .link {
  text-decoration: none;
  color: black;
}

body section {
  height: auto;
}

body ul {
  margin-bottom: 24px;
}

body li {
  font-size: 1rem;
}

body #caution {
  height: 40px;
  background-image: url("/images/caution-1.gif");
  background-repeat: repeat-x;
}

body #container {
  padding: 2rem;
  word-break: break-all;
}

body .link-icon {
  margin-right: .5rem;
  height: 16px;
  width: 16px;
}

body #music .music-track {
  margin: 2rem 0;
}

body #music h3 {
  margin-bottom: .5rem;
}

body .clock-day:before {
  content: var(--timer-day);
}

body .clock-hours:before {
  content: var(--timer-hours);
}

body .clock-minutes:before {
  content: var(--timer-minutes);
}

body .clock-seconds:before {
  content: var(--timer-seconds);
}

body .clock-container {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-style: solid;
  border-width: 2px;
  border-color: white gray black white;
  -webkit-box-shadow: white 1px 1px 0px 1px inset, gray -1px -1px 0px 1px inset;
          box-shadow: white 1px 1px 0px 1px inset, gray -1px -1px 0px 1px inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .clock-col {
  margin-right: .5rem;
  margin-left: .5rem;
  position: relative;
}

body .clock-col:not(:last-child):before, body .clock-col:not(:last-child):after {
  content: "";
  background-color: black;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: -8px;
}

body .clock-col:not(:last-child):before {
  top: 45%;
}

body .clock-col:not(:last-child):after {
  top: 55%;
}

body .clock-timer:before {
  color: black;
  font-size: 1rem;
  text-transform: uppercase;
}

body #depop {
  width: 100%;
  height: auto;
  margin: 40px 0px;
  color: white;
  background-color: red;
}

body .depop-widget {
  height: auto;
  background-color: #7FFF00;
}

@media (max-width: 768px) {
  body #container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body #container #column1 {
    width: 100%;
  }
  body #container #column2 {
    width: 100%;
  }
  body #container #column3 {
    width: 100%;
  }
  body h1 {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}

/*////////////
/ JONLINE SHOP
/*/
#shop-thumbnails {
  /* Prevent vertical gaps */
  line-height: 2;
  -webkit-column-count: 4;
  -webkit-column-gap: 0px;
  -moz-column-count: 4;
  -moz-column-gap: 0px;
  column-count: 4;
  -webkit-column-gap: 1%;
          column-gap: 1%;
}

#shop-thumbnails img {
  /* Override inline a */
  width: 100% !important;
  height: auto !important;
}

#shop-thumbnails img:hover {
  opacity: 50%;
}

#shop-thumbnails img .shop-item {
  width: auto;
  height: auto;
  padding: 1rem;
  border: 1px solid lightseagreen;
  border-radius: .25rem;
}

#lightbox {
  margin: 50px 0;
}

#lightbox .thumb {
  max-height: 171px;
  border: solid 6px white;
}

#lightbox .lightbox {
  position: fixed;
  z-index: 999;
  height: 0;
  width: 0;
  text-align: center;
  top: 0;
  left: 0;
  background: #7FFF00;
  opacity: 0;
}

#lightbox .lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 2%;
  opacity: 0;
}

#lightbox .lightbox:target {
  outline: none;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
}

#lightbox .lightbox:target img {
  border: solid 17px white;
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

#lightbox .light-btn {
  color: #fafafa;
  background-color: #7FFF00;
  border: solid 3px white;
  padding: 5px 15px;
  border-radius: 1px;
  text-decoration: none;
  cursor: pointer;
  vertical-align: midule;
  position: absolute;
  top: 45%;
  z-index: 99;
}

#lightbox .light-btn:hover {
  background-color: white;
  color: #7FFF00;
}

#lightbox .btn-prev {
  left: 7%;
}

#lightbox .btn-next {
  right: 7%;
}

#lightbox .btn-close {
  position: absolute;
  right: 2%;
  top: 2%;
  color: #fafafa;
  background-color: #7FFF00;
  border: solid 5px white;
  padding: 10px 15px;
  border-radius: 1px;
  text-decoration: none;
}

#lightbox .btn-close:hover {
  background-color: white;
  color: #7FFF00;
  border: solid 5px #7FFF00;
}

@media (max-width: 1200px) {
  #photos {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (max-width: 1000px) {
  #photos {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 800px) {
  #photos {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 400px) {
  #photos {
    -webkit-column-count: 1;
    column-count: 1;
  }
}
/*# sourceMappingURL=styles.css.map */