html{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
}
body{
    display: flex;
    align-content: center;
    justify-content: center;
}

.game{
    align-content: center;
    justify-content: center;
    width: fit-content;
    padding: 10px;
    border: 5px solid gray;
    margin: 0;
    
}

.newGameBtn {
  background-color: #cf245f;
  background-image: linear-gradient(to bottom right, #fcd34d, #ef4444, #ec4899);
  border: 0;
  border-radius: .25rem;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  line-height: 1.75rem; /* 28px */
  padding: 1rem 1.25rem;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  float: left;
}
.newGameBtn:active {
    transform: scale(2);
  }

.newGameBtn:hover {
  box-shadow: none;
}

.controls{
    align-content: center;
    display: flex;
    justify-content: center;
    padding: 20px;
    border: 5px solid gray;
    margin: 0;
    background-color: #cf245f;
}
.Scores{
    padding-left: 40px;
 color: #fff;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  line-height: 1.75rem; /* 28px */
  text-align: center;
  float: left;
}
.board{
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
    padding: 5px;
    align-content: center;
}
.grid-item {
    display: flex;
    align-content: center;
    justify-content: center;
    background-color:#ffffff;
    border: 1px solid rgba(0, 0, 0, 0.8);
    font-size: 30px;
    text-align: center;
    cursor: pointer;
  }

.grid-item img{
    height: 50px;
    width: 50px;
    margin: 0;
    visibility: hidden;
}

.grid-item.flip img{
    visibility: visible;
    cursor:default;
}

.footer{
    color: #fff;
    font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    line-height: 1.75rem; /* 28px */
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
}
.won{
    background-color: #cf245f;
  background-image: linear-gradient(to bottom right, #fcd34d, #ef4444, #ec4899);
  border: 0;
  border-radius: .25rem;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  line-height: 1.75rem; /* 28px */
  padding: 1rem 1.25rem;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  float: left;
  height: 0;
  width: 0;
  visibility: collapse;
    
}