.my-button {
     background-color: #007bff; /* Button color */          
     color: white;              /* Text color */
     padding: 10px 20px;       /* Space inside the button */
     text-decoration: none;     /* Removes the underline */                                                     
     display: inline-block;     /* Allows for padding/margin */                                                
     border-radius: 5px;       /* Rounded corners */       border: none;              /* Removes default bord er */
    cursor: pointer;           /* Shows the hand cursor on hover */                                        
     hover: background-color: #0056b3; /* Darker color when hovering */ 
    }
