.button {
    border-radius: 10px;
    padding: 10px;
    /*max-width: 400px;*/
    transition: transform 0.2s, background-color 0.2s; /* Apply transition to transform and background-color */
    position: relative;
    cursor: pointer;
}

.light_blue_button {
    background-color: #63b1ee;
    border: 0;
    color: white;
}

.light_blue_button:hover {
    background-color: #3e9be7;
}

.red_button {
    background-color: #ee6363;
    border: 0;
    color: white;
}

.red_button:hover {
    background-color: #e73e3e;
}