@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');

body{
    background: #282828;
    color: #fbf1c7;
    text-align: center;
    font-family: 'IBM Plex Sans', sans-serif;
}


table{
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 15px;
}

table, td, th{
    border: 3px solid #98971a;
    border-collapse: collapse;
    padding: 20px;
}

th{
    background: #282828;
    color: #fbf1c7;
}

tr:nth-child(odd){
    background: #fbf1c7;
    color: #282828;
}

button{
    background-color: #98971a;
    color: #fbf1c7;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #98971a;
    border-radius: 25px;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
}

button:hover{
    background: #282828;
}