body {
  margin: 0;
  height: 100%;
  background-color: black;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Times New Roman", serif;
  color: #212121;
}

header {
  font-size: 20px;
}

h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-align: center;
  color: white;
}

h2 {
  color: black;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.mindscape-next {
  text-align: right;
  margin-bottom: 20px;
}

.breadcrumb {
  padding: 20px;
  color: white;
  margin: auto;
  text-align: center;
}

.breadcrumb a {
  color: black;
  text-decoration: underline;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  cursor: url(cursor/14.cur), pointer;
  text-shadow: 0 0 2px #ffffff, 0 0 2px white, 0 0 10px #0d0f8f;
}

main {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  background-color: #ebebeb;
  max-width: 800px;
}

.about {
  padding: 20px;
}

.gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 900px;
}

.profile {
  position: relative;
  margin: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 10em;
  height: 19em;
}

.profile p {
  font-size: 1.5em;
  font-weight: bold;
}

.profile img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
}

.profile:hover {
  transform: scale(1.05);
  filter: brightness(1.3);
}

.name {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3 ease, transform 0.3s ease;
  letter-spacing: 2px;
}

.profile:hover .name {
  opacity: 1;
  transform: translateY(0);
}
