<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Flex styles -------------------------------------------------*/
/*header {
  display: flex;
  align-items: center;
}*/

@media (min-width: 700px) {
 #gallery-page .leading {
    display: flex;
    align-items: center;
  }
}


/* Grid styles -------------------------------------------------*/
#gallery-page .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
}


/* Generic styles ----------------------------------------------*/

#gallery-page section h1{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*body {
  font-family: 'Quicksand', sans-serif;
}*/

/*header {
  padding: 10px;
  font-size: 2em;
  color: white;
  background-color: #333;
}*/

#gallery-page .logo {
  height: 50px;
  margin-right: 20px;
}

#gallery-page .leading {
  height: 240px;
  margin-bottom: 30px;
  padding: 30px;
  color: white;
/*  background: url('https://cdn.glitch.com/a5121e34-96b3-4a70-8227-040c51e64fae%2Fcat.jpg?1509635989509') center #333 no-repeat;*/
/*  background: url('/images/top100-background.png') center #333 no-repeat;*/
  background-size: cover;
/*  color: white;*/
  color:black;
/*  text-shadow: 0px 0px 5px #000;*/
  border-bottom: 5px solid #ddd;
  font-weight: 500;
}

#gallery-page .leading-bigtext {
  margin-right: 60px;
  font-weight: bold;
  font-size: 12vw;
}

@media (min-width: 700px) {
  #gallery-page .leading-bigtext {
    font-size: 100px;
  }
}

#gallery-page .leading-text {
  max-width: 900px;
  font-size: 1.2em;
  line-height: 1.4em;
}

#gallery-page .cards {
  max-width: 1200px;
  margin: 0 auto 30px;
}

#gallery-page article {
  position: relative;
}

#gallery-page .article-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

#gallery-page .article-bottom-band {
  position: absolute;
  bottom: 0;
  padding: 10px;
  height: 54px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

#gallery-page .article-text1 {
  position: absolute;
  bottom: 24px;
  left: 10px;
  width: 95%;
  font-weight:900;
  line-height: 90%;  
}

#gallery-page .article-text2 {
  position: absolute;
  bottom: 5px;
  left: 10px;
  width: 100%;
  font-weight:600;
}

#gallery-page .article-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  font-weight:900;
  background-color: rgba(255, 255, 255, 0.6);
}

#gallery-page .article-number {
  position: absolute;
  top: 0;
  padding: 10px;
  font-weight:900;
  background-color: rgba(255, 255, 255, 0.6);
}

#gallery-page .gallery-hover{
  cursor: pointer;
}
.gallery-hover:hover{
  opacity: 0.5;
}

#gallery-page span{
  font-weight:600;
}

#gallery-page .home-title
{
    max-width: 1200px;
    margin: 0 auto 30px;    
}</pre></body></html>