body {
  background-color: black;
  color: black;

  margin: 0;
  display: flex;
  height: 95vh;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  padding-left: 100px;
  padding-right: 100px;
}

.image-splash{
  display: flex;
  gap:25px;
}

#title {
  max-width: 125px;
  height: auto;
  border-radius: 8;
}

.linked {
  position: relative;
  z-index: 1;
  filter: grayscale(50%);
  transition: transform .75s ease;
}

.linked:hover {
  z-index: 2;
  filter: grayscale(0%);
  transform: scale(2.5) rotate(-1deg);
}

.lights {
  position: relative;
  z-index: 1;
  filter: grayscale(95%);
  transition: transform .75s ease;
}

.lights:hover {
  position: relative;
  z-index: 1;
  filter: grayscale(0%);
  transition: transform .75s ease;
}