   /* Centering container */
        .centered {
            display: flex;
            justify-content: center;
            align-items: center;
            
        }

        /* Button styles */
        .button {
            display: inline-block;
            padding: 10px 50px;
            font-size: 16px;
            text-align: center;
            text-decoration: none;
            background-color: blueviolet;
            color: white;
            border-radius: 5px;
        }

        .button:hover {
            background-color: blueviolet;
        }