@import url(font.css);
/* Sass Document */
.container {
  margin: 10px;
}

body {
  font-family: 'Office Code Pro', Courier, monospace;
}

a {
  color: black;
}

.expert {
  color: gray;
  position: fixed;
  bottom: 10px;
  list-style: none;
}

.entry {
  width: 50em;
  max-width: 100%;
  text-align: justify;
}

.quote {
  font-style: italic;
  color: gray;
}

.title img {
  width: auto;
  height: 50px;
  margin: 5px;
  margin-bottom: -15px;
  display: inline;
}
.title h1 {
  height: 100%;
  display: inline;
  margin-bottom: 15px;
}

.entry {
  margin-bottom: 30px;
}

.entryBody {
  margin-top: 0px;
  margin-bottom: 0px;
}

.entryTitle {
  margin-bottom: 0.5em;
}

.entrySubtitle {
  font-style: italic;
  font-weight: 500;
  margin-block-start: 0.5em;
}

.window {
  /*position: absolute;*/
  z-index: 9;
  border: 1px solid black;
  background-color: white;
}

.windowHead {
  padding: 10px;
  border-bottom: 1px solid black;
  cursor: move;
  z-index: 10;
  overflow: hidden;
}

.windowBody {
  padding: 10px;
}

.windowImageBody {
  height: calc(100% - 42px);
  width: 100%;
}

.spacer {
  height: 2rem;
}

.windowClose {
	user-select: none;
  float: right;
  width: 20px;
  margin-left: 10px;
  text-align: center;
  height: 100%;
  border: 1px solid black;
}

.windowGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* grid-template-rows: repeat(0, 250px); */
  grid-gap: 1rem;
  grid-auto-flow: dense;
}

@media only screen and (max-width: 768px) {
  .windowGrid {
    grid-template-columns: 1fr;
  }
}

.windowGrid > .wide {
  grid-column: span 2;
}
.windowGrid > .tall {
  grid-row: span 2;
}

.comment {
	margin-block-start: -1em;
	color: silver;
}

.windowImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*# sourceMappingURL=style.css.map */
hr {
  margin-top: 2em;
  margin-bottom: 1em;
  height: 2px;
  color: black;
}

#julie a:hover img {
  content: url('julie1.png'); /* Change the image source to your hover image */
}

#will a:hover img {
  content: url('will2.png'); /* Change the image source to your hover image */
}

.link-image {
  width: 96px;
}

