.scratch-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns both text and button to the left */
  gap: 10px; /* Space between text and the button */
  margin-bottom: 20px;
}

.scratch-btn {
  background-color: #4c97ff; /* Classic Scratch blue */
  color: white;
  padding: 8px 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #2e75d4;
  border-radius: 16px; /* Pill shape style */
  box-shadow: 0 3px 0 #2e75d4; /* 3D flat shadow look */
  transition: all 0.1s ease;
}

.scratch-btn:hover {
  background-color: #3373cc;
}

.scratch-btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #2e75d4;
}