/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 28:4 Unexpected "<"

**/
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Double Sized Button</title>
    <style>
        .button {
            padding: 1rem 2rem; /* Double the padding */
            font-size: 2rem; /* Double the font size */
            border-radius: 0.5rem; /* Double the border radius */
            background-color: #007bff; /* Example background color */
            color: white; /* Example text color */
            border: none; /* Remove default border */
            cursor: pointer; /* Change cursor on hover */
        }

        /* Optional: Add hover effect */
        .button:hover {
            background-color: #0056b3; /* Darker shade on hover */
        }
    </style>
</head>
<body>

<button class="button">Click Me</button>

</body>
</html>
