#UpWin{
    margin: 15px 0px ;
    height: 256px;
    justify-content: center;
    display: flex;
}
#gameMain{
    background-color: black;
    width: 256px;
    height: 100%;
    position: relative;
    pad: 1px;
    display: inline-block;
    border: 2pt white solid;
    border-radius: 2%;
}
#infoTab{
    width: 25px;
    height: 100%;
    display: inline-block;
    background-color: black;
    margin: 0 15px;
    border-radius: 5px;
}
#infoBars{
    height: 100%;
    display: grid;
    grid-template-rows: repeat(64, 1fr);
}
.infoBar{
    display: inline-block;
    border-radius: 10px;
    background-color:  rgb(102, 102, 102);
    border: 1pt solid black;
    box-sizing: border-box;
}
.infoBar.Red{
    background-color: red;
}
.infoBar.Blue{
    background-color: blue;
}
.infoBar.faded{
    opacity: 0.2;
}
.square{
    background-color: rgb(102, 102, 102);
    width: 28px;
    height: 28px;
    position: absolute;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
}
.square.lastClicked{
    background-color: white;
}
.marker{
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1pt solid black;
    box-sizing: border-box;
}
.marker.Red{
    background-color: red;
}
.marker.Blue{
    background-color: blue;
}
.square:hover{
    background-color: blueviolet;
}
#LowWin{
    width: 90%;
    margin: auto;
}
#MSGBox{    
    width: 100%; 
    height: 50px;
    margin: auto; 
    background-color: rgb(0, 0, 0); 
    color: green;
    text-align: center;
}

#controlCenter{
    width: 100%;
    margin: 5% auto;
    display: grid;
}
#controlCenter button {
    margin: 2% 2%;
    height: 35px;
    background: dimgrey;
}
.highlighted {
    animation: colorPulse 1s infinite;
}

@keyframes colorPulse {
    0%   { background-color: #4caf50; }
    50%  { background-color: #ff9800; }
    100% { background-color: #4caf50; }
}