.mainbtn {
    background-color: #d09b49; /* background */
    border: none; /* Remove borders */
    color: black; /* White text */
    padding: 12px 16px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
    }

/* Darker background on mouse-over */
.mainbtn:hover {
    background-color: RoyalBlue;
    color: white; /* White text */
    border-radius: 5px;

    }


.btn {
    background-color: #f0eadf; /* background */
    border: none; /* Remove borders */
    color: black; /* White text */
    padding: 12px 16px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */

    }

/* Darker background on mouse-over */

.btn:hover {
    background-color: RoyalBlue;
    color: white; /* White text */
    border-radius: 5px;

    }
