body {
    /* background-image: url("candy-crush-background-2.png"); */
    max-width: 100vh;
    display: flex;
  }
.container{
    
    position: absolute;
    left:50%;
    top:10%;
    transform: translate(-50%,-10%);

}
h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}
.grid{
    height: 560px;
    width: 560px;
    display: flex;
    flex-wrap: wrap;
    background-color: aqua;
}
.grid div{
    height: 70px;
    width: 70px;
}
.scoreBoard {
    background-color: pink;
    border-radius: 10px;
    margin-top: 200px;
    margin-left: 200px;
    margin-bottom: 350px;
    min-width: 200px;
  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(#FFB6C1, #FFC0CB);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) inset, 0 1px 0 #fff;
    color: #85796b;
  }