@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

body {
    font-family: "Google Sans Flex", sans-serif;
    margin: 0;
    padding: 0;
}

.orange {
    font-weight: bold;
    color: rgb(242, 106, 53);
}

header {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 5rem;

    background-color: rgb(35, 31, 32);
    color: white;
}

header img {
    height: 50%;
}

table {
    width: 100%;
    border-spacing: 0;
}

thead {
    background-color: rgb(236, 237, 239);
    color: rgb(145, 143, 143);
}

th {
    padding: 1rem;
    font-weight: normal;
    text-align: left;
}

td {
    padding: 1rem;
    border-bottom: 1px solid rgba(145, 143, 143, 0.5)
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    background-color: rgb(236, 237, 239);
    color: rgb(145, 143, 143);
}

footer p {
    text-align: center;
}