.big-red-button {
    display: inline-block; /* Allows setting width, padding, etc. */
    padding: 20px 40px;   /* Top/bottom padding, left/right padding */
    background-color: #FF0000; /* Red color */
    color: white;         /* Text color */
    text-decoration: none; /* Removes underline from link */
    font-size: 24px;      /* Big font size */
    border: none;         /* No border */
    border-radius: 8px;   /* Slightly rounded corners */
    cursor: pointer;      /* Changes cursor to a pointer on hover */
    text-align: center;   /* Centers the text within the button */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.big-red-button:hover {
    background-color: #CC0000; /* Darker red on hover */
}