body{
    font-family: sans-serif;
}

.container{
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    height: 100vh;
}


.buttons{
    text-align: center;
}

button {
    margin: 0.5em;
    padding: 0.6em 1.2em;
    font-size: 1rem;
    font-weight: bold;
    border: 0;
    border-radius: 5px;
    color: black;
    cursor: pointer;
}

button:hover {
    filter: brightness(90%);
    transition: filter 0.2s ease-in-out;
}

.buttons > button:nth-of-type(1) {
    background-color: #5DAE8B;
}

.buttons > button:nth-of-type(2) {
    background-color: #FFB84D;
}

.buttons > button:nth-of-type(3) {
    background-color: #E57373;
}


table {
    margin: 20px auto;
    border-collapse: collapse;
}

th, td {
    padding: 10px 20px;
    border: 1px solid #ccc;
}

tr > th:nth-of-type(1) {
    background-color: #5DAE8B;
}

tr > th:nth-of-type(2) {
    background-color: #E57373;
}