@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    padding: 0;
    margin: 0;
    background: rgba(30, 30, 30, 0.5);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

nav {
    background-color: rgb(63, 63, 63);
    display: flex;
    height: 50px;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    color: white;
}

nav .left {
    /*background-color: coral;*/
    background-color: #787676;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px 0;
}

nav .left a {
    color: inherit;
    text-decoration: none;
}

nav .right {
    color: inherit;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0;

}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

table {
    border: 1px solid black;

    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 10px black
}

th, td {
    padding: 10px 20px
}

tr:nth-child(even) {
    background-color: rgb(179, 179, 179);
}

table th {
    color: white;
    background-color: rgb(63, 63, 63);

}

footer {
    background-color: #787676;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 64px;
    margin-top: 16px;
}

