
.container {
  display: grid;
  grid-template-columns: repeat(1, auto); /* Po kolko da izlizat na red */
  gap: 10px; /* 40px */
  justify-content: center;
}

.lcd-wrapper {
  position: relative;
	
 /* Za 16x2 LCD-to  */
 /* width: 500px;
  height: 200px; */
	
 /* Za 16x4 LCD-to  */
  width: 577px;
  height: 384px; 
	
}

.lcd-bg {
  width: 100%;
  height: 100%;
}

.lcd {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(16, 24px);
	
/* Za 16x2 LCD-to  */
/* top: 67px;  */ 
/* left: 57px; */
/* grid-template-rows: repeat(2, 33px); */
	
/* Za 16x4 LCD */	
  grid-template-rows: repeat(4, 38px); 
  top: 117px;  
  left: 96px; 
	
  font-family: monospace;
  font-size: 40px;
  color: black;
  text-align: center;
  line-height: 37px;
}

.cell { background: transparent; }