body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  /* Full black background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  color: white;
}

.landing-page {
  width: 1920px;
  height: 1080px;
  background-image: url('./imgpsh_fullsize_anim.jpeg'); 
  background-size: cover;
  background-position: center; 
  z-index: 0;

}
.net-server {
  display: flex;
  justify-content: space-between;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.net {
  margin: 20px;
  background: red;
  border-radius: 37px;
  position: absolute;
  bottom: 30px;
  width: 50px;
  height: 50px;
  animation: blink 1s infinite;
}
.server {
  color: white;
  font-size: 50px;
  font-weight: 700 !important;
  text-align: center;
  animation: blink 1s infinite;
}
.image-slider-div{
    z-index: 2;
}
.screen-id{
  color: white;
    font-size: 100px;
    font-weight: 800;
    text-align: end;
    margin-top: 25px;
    margin-right: 46px;
}

.button-cl{
  float: right;
  margin: 30px;
  width: 150px;
  height: 50px;
  color: white;
  background: black;
  border: 10px transparent;
  border-radius: 15px;
  font-size: 25px;
  font-weight: 700;
  padding: 10px 10px 10px 10px;
}

.button-cl:focus{
  float: right;
  margin: 30px;
  width: 150px;
  height: 50px;
  color: white;
  background: green;
  border: 10px white;
  border-radius: 15px;
  font-size: 25px;
  font-weight: 700;
  padding: 10px 10px 10px 10px;
}

/* button.wifi {
  position: absolute;
  right: 107px;
} */



#content {
  display: none;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Send the image to the background */
}

/* Fade-In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}
