<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---- button ---- */

.button {
  display: inline-block;
  padding: 7px 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 0px;
  color: var(--light1);
  /* font-family: sans-serif; */
  font-size: 16px;
  font-family: myRegularFont;
  cursor: pointer;
  border-radius: 5px;

}

.button:focus {
  outline: none;
  box-shadow: none;
}

.button:hover {
  background-color: var(--light2);
  /* text-shadow: 0 1px hsla(0, 0%, 100%, 0.5); */
  color: var(--dark1);
}

.button:active,
.button.is-checked {
  background-color: var(--light2);
  color: var(--dark1);

}

/*
.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.2);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.2  );
  border-radius: 3;
}*/

/* ---- button-group ---- */

.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.button-group .button {
  float: none;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

/*
.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }
*/



  /* ---- isotope ---- */
  

  .grid-container {
    margin: 0 auto;
    display: block; 
  }

  .grid{
    visibility: hidden;
    /* margin: 0 auto; */


  }

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

  
  .element-item,
  .element-sizer {
    width: 16.66667%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
    border: 2px solid #1b1b1b;
  }

  .element-item--width2 {
    width: 33.3333%; 
    box-sizing: border-box;
    -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
    /* border: 4px solid #ffffff; */
  padding-left: 2px;
  padding-right: 2px;
}
  .element-item--height2 { height: 200px; }
  

  /* ---- .element-item ---- */


.element-item .text {
  color: #D9CAA5;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.1rem 0.1rem;
}

/* Bottom left text */
.element-item .bottom-right {
  opacity: 0;
  color: whitesmoke;
  position: absolute;
  font-weight: 400;
  bottom: 12px;
  right: 12px;
  transition: .5s ease;

}

.element-item .icon {
  opacity: 0.9;
  color: whitesmoke;
  position: absolute;
  font-weight: 500;
  font-size: 1.2rem;
  bottom: 12px;
  left: 14px;
  opacity: 0;
  transition: .5s ease;
}


.image {
  display: block;
  width: 100%;
  transition: .5s ease;
  backface-visibility: hidden;
  /* padding: 0.1rem; */
  filter: grayscale(50%);
  filter: contrast(90%);
}

.middle {
  background-color: #222222;
  transition: .5s ease;
  opacity: 0.0;
  position: absolute;
  top: 8px;
  left: 8px;
  text-align: center;
  line-height: 1rem;
  width: 50%;
}


.element-item:hover .image {
  opacity: 1;
  filter: grayscale(0%);
  filter: contrast(100%);


}

.element-item:hover .middle{
  opacity: 0.9;
  background-color: whitesmoke;
  border-radius:3px;
}

.element-item:hover .icon {
  opacity: 0.9;
}

.element-item:hover .bottom-right{
  opacity: 1;
}

.element-item:hover .text {
  color: #17191c;
  visibility: visible;
}


.refpage{
  visibility: hidden;

}

@media (max-width: 800px) {
  
  .element-sizer, .element-item {
    width: 25%;
  }
  .element-item--width2 { width: 50%; }
}


@media (max-width: 500px) {
  
  .element-sizer, .element-item {
    width: 33.33%;
  }
  .element-item--width2 { width: 66.66%; }
}



@media (min-width: 1300px) {
  
  .element-sizer, .element-item {
    width: 12.5%;
  }
  .element-item--width2 { width: 25%; }
}

</pre></body></html>