
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "MingLiU-ExtB", monospace;
}

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

.monitor-left, .monitor-right {
  width: 100px;
  height: auto;
  animation: float 2.5s ease-in-out infinite;
}

.monitor-left {
  animation-delay: -0.5s;
}

.monitor-right {
  animation-delay: -1s;
}

h1 {
  color: black;
  font-size: 2em;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
