body{
    background-color: lightcoral;
}
.pageTitle{
    text-align:center;
    font-family: Helvetica;
}


.scoreboard {
    display: flex;
    justify-content:center ;
    gap: 10%;
    font-size: 25px;
    font-family: Helvetica;
    font-weight: 800;
    margin-top: 1%;
}


.scoreboard span{
    color: lightgoldenrodyellow;
}

.gameboard_main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 4%;
    margin-bottom: 2%;
}

.gameboard_box{
    display: flex;
    flex-direction: column;
    gap:5px;
}

.row1, 
.row2,
.row3{
    display: flex;
    width: 300px;
    max-width:300px;
    gap:5px;
}

button[item-type='box']{
    height: 100px;
    width: 100px;
}

.reset{
    display: flex;
    justify-content: center;
    gap: 1%;
    align-items: center;
    border-radius: 5px;
}


.footer {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(59, 95, 212);
    color: blanchedalmond;
    justify-content: center;
    align-self: flex-end;
    margin-top: 50px;
    font-family: Helvetica;
  }

  .resetgame {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    border: 3px solid;
    padding: 0.25em 0.5em;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .resetgame:active {
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
  }
  
  @media (min-width: 768px) {
    .resetgame {
      padding: 0.25em 0.75em;
    }
  }

/* CSS */
.resetround {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  border: 3px solid;
  padding: 0.25em 0.5em;
  box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.resetround:active {
  box-shadow: 0px 0px 0px 0px;
  top: 5px;
  left: 5px;
}

@media (min-width: 768px) {
  .resetround {
    padding: 0.25em 0.75em;
  }
}





