table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
}

tr:nth-child(odd) {
    background-color: orange;
}
#button {
    background-color: orange;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

#button1 {
    background-color: white;
    color: black;
    border: 2px solid gold;
}

#button1:hover {
    background-color: #04AA6D;
    color: white;
}