h1 {
 text-align: center;
 margin: 0;
 padding: 0;
}

#game-board {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hint-board {
	display: table;
}

.banner {
	justify-content: right;
	display: flex;
}

.noborder {
	padding: 0;
border: none;
background: none;
}


.hint-row {
	display: table-row;
	
}

.left-ans, .center-ans, .right-ans, .bottom-ans {
  display: table-cell;
  text-align: center;	
  padding: 5px;
  vertical-align: top;
  justify-content: center;
  align-content: center;
}

.list-box {
    content: 'Testing 123';
    position: absolute;
  margin-left: 60px;
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 700;
  height: 10rem;
  width: 9.5rem;
  display: flex;
  flex-direction: column;
    z-index: -10;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.letter-box {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.type-box {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}


.score-box {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 1px;
  font-size: 0.60rem;
  font-weight: 700;
  height: 0.75rem;
  width: 0.75rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.big-score {
  margin: 20px;
  font-size: 2.5rem;
  margin-top: 120px;
  font-weight: 700;
  position: relative;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}


.score-box-h {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 1px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 2.75rem;
  width: 2.7rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

#helper1,#helper2,#helper3,#helper4 {
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
}

.big-score-box-h {
   content: 'Testing 123';
  border: 2px solid gray;
    position: absolute;
  margin-left: 60px;
  margin-top: 5px;
  font-size: 5rem;
  font-weight: 700;
  height: 10rem;
  width: 9.5rem;
  display: flex;
  
  border-radius: 50%;
  flex-direction: column;
    z-index: -10;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.flex-container {
	display: flex;
}

.guess {
  border: 2px solid gray;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 700;
  height: 0.75rem;
  width: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.hint-box,.hint-box-h {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 1.75rem;
  font-weight: 700;
  height: 2rem;
  width: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.hint-box-h {
  
}

.hint-row-h {
  align-items: center;
    display: flex;
    justify-content: center;
}

.empty-box {
  border: none;
  margin: 4px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.filled-box {
  border: 2px solid black;
}

.letter-row {
  display: flex;
}

.type-row {
  display: flex;
  margin-top: 10px;
}

#keyboard-cont {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#finish {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  color: black;
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-left,
.banner-right {
  display: flex;
  gap: 1px;
  flex: 1;
}

.banner-center {
  flex: 2;
  text-align: center;
}

.banner-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.icon {
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.icon:hover {
  opacity: 0.7;
}

#scoreButton,#shareButton1,#shareButton2 {
	  display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: aquamarine;
            color: black;
            text-decoration: none;
            border-radius: 4px;
    }


#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;
}

.trcorner, .tlcorner {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 1 rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
}
/* add diagonal line */
.trcorner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    background: linear-gradient(to top left, transparent calc(50% - 1px), green, transparent calc(50% + 1px)  );

}
/* add diagonal line */
.tlcorner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    background: linear-gradient(to top right, transparent calc(50% - 1px), green, transparent calc(50% + 1px)  );

}
.blcorner, .brcorner {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 1 rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
}
/* add diagonal line */
.blcorner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    background: linear-gradient(to bottom right, transparent calc(50% - 1px), green, transparent calc(50% + 1px)  );

}
/* add diagonal line */
.brcorner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    background: linear-gradient(to bottom left, transparent calc(50% - 1px), green, transparent calc(50% + 1px)  );

}
/* align boxes with headings */
.dheading_tl, .dheading_tr, .dheading_bl,
.dheading_br{
    position: absolute;
    /* or wider if needed/possible */
    width: 50%;
    height: 50%;
    overflow: hidden;
}
.dheading_tl {
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.dheading_br {
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.dheading_tr {
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.dheading_bl {
    bottom: 0;
    left: 6px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
