.tvscreen {
  cursor: pointer;
  width: 1920px;
  height: 1080px;
}

.tvscreen img {
  width: 1920px;
  height: 1080px;
  opacity: 90%;
  transition: 0.3s ease-in-out;
  z-index: 10;
}

.tvscreen:hover {
  width: 1920px;
  height: 1080px;
  background: rgb(00, 153, 255);
}

.tvscreen:hover img {
  width: 1920px;
  height: 1080px;
  box-shadow: 0px 0px 40px 20px rgb(00, 153, 255);
  opacity: 90%;
  z-index: 1;
}

.tvscreen:focus-within {
  -webkit-appearance: none;
  width: 1920px;
  height: 1080px;
  box-shadow: 0px 0px 50px 40px rgb(00, 153, 255);
  opacity: 100%;
  z-index: 1;
  outline: none;
}
