html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

body {
    background: linear-gradient(45deg, #32292b, #2a2223);
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: white;
}

.content {
    width: 100%;
    height: 100%;
}

.content-inner  {
    width: calc(100% - 60px);
    max-width: 500px;
}

.logo {
  width: 100%;
  height: auto;
} 

.flex-center {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.icon-links {
  font-size: 30px;
  color: white;
  margin-top: 00px;
}

.icon-links:hover {
  color: #007bff;
}

.linkedin-hover-color:hover {
  color: #0077b5;
  opacity: 0.8;
}

.facebook-hover-color:hover {
  color: #3b5998;
  opacity: 0.8;
}


.logo-stage-transition-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 800ms ease, transform 800ms ease;
}

.logo-stage-transition-down.show {
    opacity: 1;
    transform: translateY(0);
}

.logo-stage-transition-left {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(0px);
    transition: opacity 1200ms ease, transform 1200ms ease, filter 1200ms ease;
}

.logo-stage-transition-left.show {
    opacity: 1;
        filter: blur(0px);
    transform: translateX(0);
}

.logo-stage-transition-right {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(0px);
    transition: opacity 1200ms ease, transform 1200ms ease, filter 1200ms ease;
}

.logo-stage-transition-right.show {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
}





/* Matrix background styles */
#matrix-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  opacity: 0.0;

  transition: opacity 3500ms ease;
}

#matrix-bg.show{
  opacity: 1;
}


.matrix-stream {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.matrix-item {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-height: 500px) and (min-aspect-ratio: 1/1) {
  .content-inner {
    max-width: none;
    width: 300px;
    height: calc(100% - 40px);
    max-height: 500px;
  }
}