.scratchpad {
    position: relative;
    width: 450px;
    height: 445px;
    border: solid 10px #ffffff;
    margin: 0 auto;
    top: 10px;
    background-color: lightcoral;
  }

  #scratchBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: lightslategray;
    padding: 5px;
    border: 2px solid whitesmoke;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
  }

  #scratchBtn:hover {
    background-color: lightslategray;
    color: white;
    border: 2px solid lightslategray;
  }

  body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #ddd;
  }

  @media (max-width: 500px) {
    .scratchpad {
      width: 90%;
      height: auto !important;
    }
  }

  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    overflow: auto;
    animation: modalFadeIn 0.5s ease-in; /* Animation for modal fade-in */
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: modalContentFadeIn 0.5s ease-in; /* Animation for modal content fade-in */
}

@keyframes modalContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#claimBtn{
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="text"],
input[type="email"]{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

  .backdiv {
    display: flex;
    justify-content: end;
    margin: 50px;
  }

  .backBtn {
    background-color: black;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
    font-size: medium;
  }
  button {
    cursor: pointer
  }

  .img{
    cursor: url('Images/coin1.png');
  }


