
html {
  font-family: Helvetica, Arial, sans-serif;
}
@media (min-width: 48em) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 58em) {
  html {
    font-size: 16px;
  }
}

.container {
  max-width: none;
}
@media (min-width: 48em) {
  .content {
    max-width: none;
    margin-left: 19rem; /* sidebar width is 18rem */
  }
}
@media (min-width: 64em) {
  .content {
    margin-left: 19rem;
  }
}

.content {
  padding: 1rem 0;
}

/* Colors */

.theme-base-10 .sidebar {
  background-color: #f6f8fa;
}
/* links */
.theme-base-10 .content a,
.theme-base-10 .related-posts li a:hover,
.sidebar a {
  color: #cc2122;
}
/* general text */
.theme-base-10,
.sidebar {
  color: #545454;
}


/*
 * Fonts
 */
/* sidebar - name */
.sidebar {
  font-family: "Courier New", serif;
}
.sidebar-about h1 {
  color: #545454;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 2rem;
}
/* sidebar - description */
.sidebar-about p.lead {
    font-size: 1rem;
    font-weight: 300;
}
.sidebar img {
  margin: 0 auto;
}
.page_title {
  font-family: Helvetica,Arial,sans-serif;
  font-size: 2rem;
}


/*
 * Cards 
 */

div.content {
  min-height: 100vh;
}

.gallery {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}

.gallery .card {
  position: relative;
  width: 32rem;
  height: 17rem;
  background: rgba(255, 255, 255, 0.05);
  margin: 0.5rem;
  box-shadow: 0 5px 5px rgba(128, 128, 128, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  background-color: #f6f8fa;
}

.gallery .card .card-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s;
}

.gallery .card .card-content .imgbox {
  position: relative;
  width: 32rem;
  height: 17rem;
  overflow: hidden;
}

.gallery .card .card-content .imgbox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.gallery .card .card-content .textbox {
  position: absolute;
  background: rgb(240 240 240 / 90%);
}

.gallery .card .card-content .textbox a {
  color: #000;
  font-weight: 250;
}

.gallery .card .card-content .textbox h3 {
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 10px;
  line-height: 1.1em;
}

.gallery .card .sci {
  position: absolute;
  bottom: 1rem;
  display: flex;
}

.gallery .card .sci p {
  margin: 0 1rem;
  transform: translateY(3rem);
  transition: 0.5s;
  opacity: 0;
}

.gallery .card:hover .sci p {
  transform: translateY(0px);
  opacity: 1;
  padding: 6px;
  background: rgb(250 250 250 / 90%);
  border: 1px solid #888;
}

