﻿.customButton {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
    text-align: center;
    transition-duration: 0.4s;
    border-radius: 5px;
    cursor: pointer;
}

    .customButton:hover {
        background-color: #008CBA;
        color: white;
    }
