body {
  margin: 0;
  height: 100%;
  background-color: black;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 16px;
  color: white;
  cursor: url(cursor/1.cur), auto;
}

header {
  margin: 2px;
  font-size: 20px;
}

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

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;
}

.menu-icon {
  width: 2em;
}

.topnav {
  overflow: hidden;
  text-align: center;
  font-weight: 900;
}

.topnav a {
  padding: 12px;
}

.topnav .icon {
  display: none;
}

.cons {
  opacity: 0.5;
}

@media screen and (max-width: 600px) {
  .topnav a {
    display: none;
  }

  .topnav a.icon {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

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

.breadcrumb a {
  text-decoration: underline;
}

.breadcrumb a:hover {
  text-shadow: none;
}

h2 {
  font-weight: 900;
}

main {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  background-color: black;
  margin: 0 auto;
  max-width: 800px;
}

.about {
  max-width: 600px;
  padding: 20px;
  line-height: 1.5;
}

.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: 20px;
}

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

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

.name {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3 ease, transform 0.3s ease;
  font-weight: 0;
  letter-spacing: 2px;
  color: white;
  line-height: 1.5;
}

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

footer {
  margin: 0 auto;
  text-align: center;
  color: white;
  opacity: 0.5;
}

.warning {
  margin: 20px;
  padding: 10px;
}

.warning h3 {
  color: red;
  text-align: center;
}

.warning p {
  font-style: italic;
  color: grey;
  line-height: 1.5;
  text-align: center;
}

.tooltip {
  position: relative;
  display: inline-block;
  color: red;
  border-bottom: 1px dotted red;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  border: 1px dotted red;
  font-size: 12px;
  color: red;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
}

.tooltip .tooltip-text::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent red transparent;
}

.warning-gif {
  display: block;
  margin: 0 auto;
  width: 200px;
  border-radius: 100%;
}

.inactive {
  opacity: 0.2;
  filter: grayscale(100%);
}
