body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h1 {
  font-weight: 600;
}
h2 {
  font-weight: 500;
}
h3 {
  font-weight: 500;
  font-size: 1.25em;
}
p {
  text-align: justify;
  text-indent: 1.25rem;
}
.center {
  text-align: center;
}
.frame {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.2), 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.14), 0 0.0625rem 0.625rem 0 rgba(0, 0, 0, 0.12);
}
.frame-high {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.1875rem 0.3125rem -0.0625rem rgba(0, 0, 0, 0.2), 0 0.375rem 0.625rem 0 rgba(0, 0, 0, 0.14), 0 0.625rem 1.125rem 0 rgba(0, 0, 0, 0.12);
}
#content {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
}
.content-frame {
  padding: 0 1rem 1rem;
}
@media (min-width: 89rem) {
  #content {
    width: 70%;
  }
}
@media (max-width: 50rem) {
  #content {
    width: 99%;
  }
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  color:#BDBDBD;
}
hr {
  height: 0.0625rem;
  margin: 1rem 0;
  background: black;
  border: none;
}
.path {
  margin: 1rem 0;
  font-size: 1.25rem;
}
.path a {
  text-decoration: underline;
}
.portfolio {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 1rem;
}
.portfolio .image-link {
  position: relative;
  width: calc((100% - 4rem)/5);
  box-sizing: border-box;
}
.portfolio .image {
  width: 100%;
}
.portfolio .overlay {
  display: flex;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: lightgray;
  opacity: 0.5;
  text-align: center;
  font-size: 1.25rem;
  color: black;
  font-weight: 600;
  transition: height 0.5s;
}
.image-link:hover .overlay {
  height: 100%;
}
@media (max-width: 62.5rem) {
  .portfolio .image-link {
    width: calc((100% - 3rem)/4);
  }
}
@media (max-width: 41.75rem) {
  .portfolio .image-link {
    width: calc((100% - 2rem)/3);
  }
  .portfolio .overlay {
    font-size: 1rem;
  }
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.slide.first {
  position: relative;
}
.slide.opaque {
  opacity: 1;
}
#slideshow-container {
  position: relative;
}
#slide-container {
  width: 100%;
}
#previous-button {
  cursor: pointer;
  position: absolute;
  width: auto;
  top: 50%;
  left: 0;
  padding: 2%;
  transform: translate(0, -50%);
  color: black;
  font-weight: bold;
  font-size: 1.125em;
  border-radius: 0 0.1875rem 0.1875rem 0;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#next-button {
  cursor: pointer;
  position: absolute;
  width: auto;
  top: 50%;
  right: 0;
  padding: 2%;
  transform: translate(0, -50%);
  color: black;
  font-weight: bold;
  font-size: 1.125em;
  border-radius: 0.1875rem 0 0 0.1875rem;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#previous-button:hover, #next-button:hover {
  background-color: rgba(128,128,128,0.6);
}
#indicator-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.indicator {
  background-color: #999;
  cursor: pointer;
  display: inline-block;
  height: 0.75em;
  width: 0.75em;
  transform: translate(0,-50%);
  margin: 0 0.125rem;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.indicator:hover {
  background-color: #555;
}
.indicator.active {
  background-color: #555;
}
