body {
    background-color: black;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 20px;
}

a {
    color: #87ECF2;
}

a:hover {
    color: #129AA1;
}

a:active {
    color: #BAF4F7;
}

.image-container {
    position: relative;
    width: 15%;
    height: 15%;
    object-fit: contain;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  animation: crossfade 10s infinite ease-in-out;
}

.image1 {
  z-index: 1;
  animation-name: fadeA;
}

.image2 {
  z-index: 2;
  animation-name: fadeB;
}

@keyframes fadeA {
  0%   { opacity: 1; }
  40%  { opacity: 0; }
  60%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeB {
  0%   { opacity: 0; }
  40%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; }
}
