p{
    text-align: center;
}

button{
    cursor: pointer;
    border: solid;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(0, 40, 104);
    border: solid rgb(0, 40, 104);
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#buttons{
    display: flex;
    justify-content: center;
    width: 100%;
}

#buttons button.active {
    background-color: rgb(0, 80, 180);
}

h2{
    display: flex;
    justify-content: center;
    background-color: rgb(0, 40, 104); /*America Blue*/
    color: white;
    padding: 5px;
    margin-top: 0px;
}

table{
    border-collapse: collapse;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
}

th, td{
    padding: 20px;
    text-align: center;
    border: 1px solid;
}

table{
    width: 600px;
    margin: 20px;
}