
/* Generic styles */
html {
  scroll-behavior: smooth;
}

a {
  background-color: darkblue;
  text-decoration: none;
  color: white;
  border-radius: .25rem;
  text-align: center;
  display: inline-block;
  transition: all .3s;
border: 1px solid #E2E2E2;
padding: .2em .2em;
}

a:hover {
  opacity: .6;
}

.header img {
  float: left;
  height: 100px;
}

.header h1 {
  position: relative;
  top: 18px;
  left: 10px;
  background: darkblue;
  display: inline-block;
}

div.site-identity a {
  background-color: white;
  text-decoration: none;
  color: white;
  border-radius: .25rem;
  text-align: center;
  display: inline-block;
  transition: all .3s;
border: 1px solid darkblue;
padding: 0 0;
}


.site-header { 
  border-bottom: 1px solid #ccc;
  padding: .5em 1em;
border: 1px solid #E2E2E2;
border-radius: .5rem;
background-color: darkblue;
background-image: url(images/heaven-banner_s.jpg);
}

.site-header::after {
  content: "";
  display: table;
  clear: both;
}

.site-identity {
  float: left;
}

.site-identity h1 {
  font-size: 3em;
  margin: .7em 0 .3em 0;
  display: inline-block;
  border: 1px solid #E2E2E2;
  border-radius: .5rem;
  background-color: rgba(5, 5, 0, 0.3);
  padding: 2;
  color: lightyellow;
  font-family: Helvetica;
}

.site-identity img {
  max-width: 110px;
  float: left;
  margin: 0 0 0 0;
background-color: darkblue;
}

.site-navigation {
  float: right;
}

.site-navigation ul, li {
  margin: 0; 
  padding: 0;
}

.site-navigation li {
  display: inline-block;
  margin: 1.4em 1em 1em 1em;
}

.hero > * {
  color: black;
  background-color: rgba(255,255,255,0.7);
  margin-top: 10rem;
}

.hero > h1 {
  font-size: 4rem;
  padding-bottom: 1rem;
}

.hero > article > p {
  font-size: 2rem;
  font-weight: 200;
}

.hero > article > a {
  padding: 1rem;
  margin-top: .75rem;
}

/* topics styles */
.topics {
  padding: 2rem;
}

.topics > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
}

.topics > ul > li {
  border: 1px solid #E2E2E2;
  border-radius: .5rem;
}

.topics > ul > li > figure {
  max-height: 220px;
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  position: relative;
}

.topics > ul > li > figure > img {
  width: 100%;
}

.topics > ul > li > figure > figcaption {
  position: absolute;
  bottom: 0;
  background-color: rgba(0,0,0,.7);
  width: 100%;
}

.topics > ul > li > figure > figcaption > h3 {
  color: white;
  padding: .75rem;
  font-size: 1.25rem;
}

.topics > ul > li > p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 1rem .75rem;
  color: #666666;
}

.topics > ul > li > a {
  padding: .5rem 1rem;
  margin: .5rem;
}

/* footer */
footer {
  background-color: #333;
  padding: .75rem;
  color: white;
  text-align: center;
  font-size: .75rem;
}
