h1 {
 text-align: center;
}

.game-board-cls {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.letter-box {
  border: 7px solid lavender;
  border-radius: 3px;
  margin: 1px;
  font-size: 1rem;
  font-weight: 700;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Sura", sans-serif;
}

.letter-box-old {
  border: 10px solid lavender;
  border-radius: 3px;
  margin: 2px;
  font-size: 2rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.tag-box {
  border: none ;
  font-size: 1rem;
  height: 3rem;
  width: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.filled-box {
  border: 10px solid black;
}

.letter-row {
  display: flex;
}

.bmc {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size:0.75em;
}
#keyboard-cont {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#keyboard-cont div {
  display: flex;
}

.second-row {
  margin: 0.5rem 0;
}

.keyboard-button {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem;
  margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-appearance: none;
  font-family: "Sura", sans-serif;
}
/* Standard syntax */
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.apply-shake {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	color : red;
}

@keyframes BLINKER {
0%, 10% {
    background-color: rgb(130,130,130);
    border: 3px solid #e50000;
}
10%, 20% {
    background-color: rgb(142,142,142);
    border: 3px solid #e50000;
}
20%, 30% {
    background-color: rgb(154,154,154);
    border: 3px solid #e50000;
}
30%, 40% {
    background-color: rgb(166,166,166);
    border: 3px solid #e50000;
}
40%, 50% {
    background-color: rgb(178,178,178);
    border: 3px solid #e50000;
}
50%, 60% {
    background-color: rgb(190,190,190);
    border: 3px solid #e50000;
}
60%, 70% {
    background-color: rgb(202,202,202);
    border: 3px solid #e50000;
}
70%, 80% {
    background-color: rgb(214,214,214);
    border: 3px solid #e50000;
}
80%, 90% {
    background-color: rgb(226,226,226);
    border: 3px solid #e50000;
}
90%, 100% {
    background-color: rgb(255,255,255);
    border: 3px solid #e50000;
}
}
.blink-grey {
 -webkit-animation: BLINKER 1s infinite; /* Safari 4+ */
  -moz-animation:    BLINKER 1s infinite; /* Fx 5+ */
  -o-animation:      BLINKER 1s infinite; /* Opera 12+ */
  animation:         BLINKER 1s infinite; /* IE 10+, Fx 29+ */
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 2;
  right:2;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(255,255,255); /* Fallback color */
  /*background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-semi-red {
	display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 5%;
  top: 30%;
  width: 80%; /* Full width */
  height: 30%; /* Half height */
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  overflow: auto; /* Enable scroll if needed */
	background-color: rgb(255,155,155);
}

/* The Modal Semi (background) */
.modal-semi {  
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 5%;
  top: 30%;
  width: 80%; /* Full width */
  height: 30%; /* Half height */
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  overflow: auto; /* Enable scroll if needed */
  border-radius:4em;
  background-color: rgb(155,255,155); /* Fallback color */
  /*background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  height: 30%;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.left-side-links {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    width: 70px;
    justify-content: flex-start;
}
.btn {
  display:block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid black;
  font-weight: bold
  
}
.right-side-links {
	display: flex;
    width: 70px;
    justify-content: flex-end;
}

.rightAnswer {
    font-weight: 700;
    font-size: 37px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-align: center;
    left: 0;
    right: 0;
	padding-top: 10px;
    pointer-events: none;
}

.title {
    font-weight: 700;
    font-size: 37px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-align: center;
    left: 0;
    right: 0;
	padding-top: 10px;
    pointer-events: none;
}

.banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	text-align: center;
    flex-wrap: nowrap;
    padding: 0 16px;
    height: var(--header-height);
    color: var(--color-tone-1);
    border-bottom: 1px solid var(--color-tone-4);
    /* font-family: Verdana,BlinkMacSystemFont,-apple-system,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,open sans,helvetica neue,sans-serif; */
    font-family: "Sura", sans-serif;
}

.bbtn {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
