﻿.button {
    background-color: orangered;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition-duration: 0.4s;
}

    .button:hover {
        background-color: orange;
    }
.table {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-style: solid;
    border-width:thin thin;
    border-block-width:thin thin;
    border-color: burlywood;
}