body {
    font-family: Arial, sans-serif;
    background-color: #4B0082;
    color: white;
    text-align: center;
    padding: 50px;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
}

/* Button Styling */
button {
    background-color: #6A0DAD; /* Purple button background */
    color: white; /* White text */
    padding: 15px 30px; /* Space around the text */
    font-size: 1.2em; /* Slightly larger text */
    border: none; /* No border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    margin-top: 20px; /* Add some space above the button */
}

button:hover {
    background-color: #9B30FF; /* Lighter purple on hover */
    transform: scale(1.05); /* Slightly increase button size on hover */
}

button:focus {
    outline: none; /* Remove the default focus outline */
}

button:active {
    background-color: #800080; /* Darker purple when clicked */
}
