body {
    text-align: center;
    font-family: 'Arial';
    background: orange;
    color: rgb(250, 239, 218);
}
img {
    width: 400px;
}

table, th, td {
    border: 1px solid orange;
    border-collapse: collapse;
}

th, td {
    padding-left: 30px;
    padding-right: 40px;
    border-radius: 10px;
}

tr:nth-child(even) {
    background-color: rgb(102, 163, 74);
  }

tr:nth-child(odd) {
    background-color: rgb(155, 114, 38);
}

