head {
}
body {
  background-color: #e265d2;
  background-size: cover;
  text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 44px; /* Adjust the size as needed */
  color: #0b0b0b; /* Set a color for the text */
}  
.border-wrapper {
  display: inline-block;
  border: 200px solid transparent; /* This area will be unclickable */
  padding: 0; /* Keep padding 0 so the button fills the space */
}
button:hover {
  cursor: pointer;
}
.unclickable-overlay {
  pointer-events: none;
}
