* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  font-family: sans-serif;
}
body {
  height: 100vh;
}

.hero-section {
  padding: 5%;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #1a1e23;
}
.card-container {
  display: flex;
  width: fit-content;
  gap: 30px;
  justify-content: center;
}
.card {
  position: relative;
  width: 350px;
  transition: 0.3s ease;
}
.card::before {
  content: "";
  display: block;
  padding-bottom: 150%;
  width: 100%;
}
.card-background {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9) saturate(1) contrast(1);
  transform-origin: bottom;
  transform: scale(1) translateZ(0);
  transition: all 0.6s;
}
.card:hover .card-background {
  transform: scale(1.05) translateZ(0);
  background-size: cover;
}
.card-container:hover .card:not(:hover) {
  transform: scale(0.9);
  opacity: 1 !important;
}

.card:hover .card-members {
  opacity: 1 !important;
}
.card-container:hover > .card:not(:hover) .card-background,
.card-container:hover > .card:not(:hover) .card-members,
.card-container:hover > .card:not(:hover) .card-hero-name {
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(10px);
}
.content {
  width: 100%;
  top: 75%;
  left: 0;
  padding-left: 20px;
  position: absolute;
}
.card-members {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 8px;
  text-transform: uppercase;
  transition: all 0.8s;
  opacity: 0;
}
.card-hero-name {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  transition: all 0.4s;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.MDJAminDiv {
  z-index: 4444;
  position: fixed;
  bottom: 5%;
  left: 2%;
}

.MDJAmin {
  text-decoration: none;
  border-bottom: 1px dashed rgb(204, 204, 204);
  border-top: 1px dashed rgb(204, 204, 204);
  /* border-bottom: 1px dashed rgb(44, 44, 44); */
  /* border-top: 1px dashed rgb(44, 44, 44); */
  padding: 4px 0;
  /* color: rgba(44, 44, 44, 0.525); */
  color: rgba(204, 204, 204, 0.414);
  font-family: monospace;
  font-style: italic;
  font-size: 1.1em;
  transition: all 0.5s;
}

.MDJAmin:hover {
  /* color: #000000; */
  color: white;
}
