body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(52, 52, 52);
    /* Primary button color */
    color: #fff;
    /* Text color */
    text-decoration: none;
    border-radius: 4px;
    /* Rounded corners */
    text-align: center;
}

a.button:hover {
    background-color: #000;
    /* Darker shade on hover */
}