* {
  font-family: Courier, monospace;
}

a {
  text-decoration: underline;
  font-weight: normal;
  color: black;
}

a:hover {
  font-weight: bold;
}

.title-link,
.nav-link {
  color: rgb(80, 80, 80);
  text-decoration: none;
  font-weight: normal;
}

.nav-link.is-current {
  color: black;
  font-size: 1.05em;
}

.nav-link:hover,
.title-link:hover {
  color: black;
}

.title-link:hover {
  font-weight: normal;
}

h1 {
  border-bottom-style: solid;
  border-color: black;
  border-width: 1px;
  padding-bottom: 5px;
}

nav {
  margin-bottom: 5px;
}

.text {
  text-align: justify;
  padding: 20px;
}

.quote {
  text-align: justify;
  font-style: italic;
  padding: 20px 20px 0px 20px;
}

.contact {
  padding-top: 20px;
  text-align: center;
}

.current {
  color: black;
}

div#content {
  width: 808px;
  margin: auto;
}

div#galery {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 550px;
}

div#slideshow {
  flex: 0 0 606px;
  height: 502px;
}

div#artwork {
  height: 502px;
  width: 606px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#artwork img {
  max-width: 100%;
  max-height: 100%;
}

div#thumbnails {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  margin-top: 10px;
}

div#filler {
  flex: 1 0 1px;
}

div .thumbnail {
  height: 54px;
  width: 54px;
  margin: 5px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div .thumbnail .thumb {
  height: 50px;
  width: 50px;
  margin: 1px;
  opacity: 0.6;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
div .thumbnail .thumb:hover {
  opacity: 1;
}
div .selected {
  background-color: rgb(179, 179, 179);
}
div .selected .thumb {
  opacity: 1;
}

#caption {
  color: rgb(179, 179, 179);
  font-size: 12px;
  font-weight: bold;
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto;
  padding: 30px;
}

.modal-container {
  max-width: 90vw;
  max-height: 90vh;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
}

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.portrait {
  text-align: center;
  margin: 25px 0 25px 0;
  background-image: url("../images/portrait_bio.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 43%;
  height: 400px;
}

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