/* profile picture settings in header */

.profile-pic img {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  object-fit: cover;

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.2);
  border-color: rgb(71, 71, 71);

  display: block;
  margin-bottom: 2rem;
}

/* Slide show for images */
span.image .slideshow {
  position: absolute;
  inset: 0;
}

span.image .slideshow .slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  transition: opacity 3.5s ease-in-out;

  pointer-events: none;
}

span.image .slideshow .slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

span.image .slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* attribution for pictures */
.attribution {
  position: absolute;
  top: 1rem;
  left: 1rem;

  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);

  background: rgba(0, 0, 0, 0.35);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}
.icons li.divider {
  position: relative;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
}

/* Thin vertical divider in icon list */
ul.icons li.divider {
  border-right: solid 1px rgba(144, 144, 144, 0.35);
  padding-right: 0.7rem;
  margin-right: 0.5rem;
}

/* Wrappers */

.gallery.style2 {
  margin-bottom: 2rem;
}

#wrapper > .color1 {
  background-color: #464c53;
}
/* Paragraphs */
p.major {
  font-size: 1.25rem;
  /*color: brown;*/
}

/* Text-level adjustments */
.highlight {
  color: #a7b0ae;
  font-size: 1.2rem;
}

a:hover {
  color: #c45730;
}

.button:hover {
  box-shadow: inset 0 0 0 1px #e58e47;
  color: #e58e47 !important;
}

.footer-icons {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
