body {
    background-image: url(https://i.pinimg.com/originals/27/5d/2f/275d2f399e07c7a5d575e71d7fa0b443.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-drag: none;
    -ms-user-select: none;
    overflow: hidden;
}

div {
    display: flex;
    flex-wrap: wrap;
}

#board img {
    cursor: cell;
}

#start {
    border-radius: 10px;
    background-color: red;
    height: 50px;
    width: 100px;
    margin: 0 auto;
    font-size: x-large;
    transition: all 0.5s ease;
    cursor: cell;
}

#start:hover {
    transform: scale3d(1.2, 1.2, 1);
    box-shadow: 0 6px 12px rgb(176, 7, 7);
}

h1 {
    margin-bottom: 5px;
    text-shadow: 0 5px 10px rgb(220, 202, 202);
}

#score {
    margin-top: 5px;
    height: 15px;
    font-size: xx-large;
    text-shadow: 0 5px 10px rgb(220, 202, 202);
}


#board {
    width: 540px;
    height: 540px;
    border-radius: 50px;
    background-color: rgb(11, 47, 0);
    margin: 0 auto;
    align-items: center;
    margin-bottom: 5px;
}

#board div {
    width: 180px;
    height: 180px;
    background-image: url(../HoleInGroundd.png);
    background-repeat: no-repeat;
    background-size: contain;
}

#board div img {
    width: 120px;
    height: 120px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-drag: none;
    -ms-user-select: none;

}


#help {
    border-radius: 15px;
    width: 20px;
    height: 20px;
    background-color: darkred;
    margin: 0 auto;
    padding: 5px;
    font-size: medium;
    justify-content: center;
    cursor: cell;
}

#help img {
    height: 80vh;
    width: 80vw;
    padding: 6px;
    border-radius: 50px;
    -webkit-user-drag: none;
    -webkit-user-drag: none;
}


#timer {
    /* margin-top: 10px; */
    border-radius: 15px;
    color: black;
    background-color: darkred;
    width: 75px;
    margin: 0 auto;
    font-size: xx-large;
    justify-content: center;
    align-items: center;
}

#reset {
    cursor: cell;
    visibility: hidden;
    border-radius: 10px;
    background-color: rgb(231, 9, 9);
    height: 37.5px;
    width: 100px;
    margin: 0 auto;
    margin-top: 2px;
    font-size: x-large;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

#reset:hover {
    background-color: red;
    box-shadow: 0 4px 8px rgb(19, 1, 1);
    
}


@media (max-width: 600px) {
  body {
    background-size: cover;
    overflow: auto;
  }

  #board {
    margin: 0 auto;
    width: 210px;
    height: 210px;
    border-radius: 30px;
  }

  #board div {
    width: 50vw;
    height: 70px;
    background-size: cover;
  }

  #board div img {
    width: 50px;
    height: 50px;
  }

  #start, #reset {
    width: 60px;
    height: 40px;
    font-size: medium;
  }

  #score {
    font-size: x-large;
  }

  #timer {
    font-size: x-large;
    width: 60px;
  }

  #help img {
    width: 90vw;
    height: auto;
  }

  h1 {
    font-size: 1.5em;
  }
}
/* <----------------------------------------CODEGRAVEYARD----------------------------------------> */