* {
  margin: 0;
}

/* System Fonts as used by GitHub */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: black;
  color: white;
}

a {
  color: #3273dc;
}

#header {
  width: 100%;
  height: 25em;
  box-sizing: border-box;
  padding-bottom: 2em;
  justify-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
}
#header #bg {
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 30em;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 1.0) 100%), url("hroseni_ohen.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
}
#header #title {
  align-self: flex-end;
  width: 100%;
  margin-top: 1em;
  font-size: 3em;
  font-variant: small-caps;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 1.5em #888, 0 0 0.5em #888, 0 0 0.2em #888;
  font-weight: bold;
}

#header #subtitle {
  align-self: flex-end;
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: auto;
  font-size: 2em;
  font-variant: small-caps;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 1.5em #888, 0 0 0.5em #888, 0 0 0.2em #888
}

#contentWrapper {
  padding: 1em;
  box-sizing: border-box;
  width: 100%;
}
#contentWrapper .center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  margin-top: 1em;
}
#contentWrapper .button {
  border-width: 1px;
  border-color: #3273dc;
  border-style: solid;
  border-radius: 6px;
  padding: 10px;
  font-variant: small-caps;
  display: block;
  cursor: pointer;
  color: white;
  text-decoration: none;
}
#contentWrapper .button:hover {
  background-color: #3273dc;
  color: white;
  font-weight: bold;
}

#content {
  margin: 0 auto;
  max-width: 40em;
  display: block;
}
#content .item {
  margin-top: 1em;
  display: grid;
  grid-template-columns: 25% 75%;
}
@media screen and (max-width: 500px) {
  #content .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
#content .item h3 {
  font-variant: small-caps;
  font-size: 120%;
  width: 6em;
}
#content .footnote {
  font-size: 0.75rem;
  color: gray;
}

.vertical-spacer {
  padding-bottom: 3em;
}

.vertical-spacer-small {
  padding-bottom: 1.5em;
}

.footer {
  padding-top: 3em;
  padding-bottom: 3em;
  text-align: center;
  color: gray;
  font-style: italic;
}

.photo {
  max-height: 30vh;
  max-width: 90vw;
}

/*# sourceMappingURL=style.css.map */
