body {
	
}
.LEDWALL{
    width: 392px;
    height: 192px;
    background: #000000;
    color: #ffffff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 24px;
    padding:10px;

    display: grid;  
    grid-template-columns: 50% 50%;  
    grid-template-rows: 25% 25% 25% 25% ;  
}
.Door{
    margin:20px;
}
.Door span{
    font-weight: bold;
    color: #FF7B01;
    margin-left:10px;
}
.justChanged {
    font-size: larger;
    animation: blinker 1s linear infinite;
    color: #00ff00 !important;
}
@keyframes blinker {
    50% {
      opacity: 0.4;
      
      font-weight: 900;
    }
  }