.navbar {
    display: flex;
    justify-content: space-around;
    width: 90%;
    height: 80px;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: sticky;
    top: 0px;
    background-color: white;
}

.navbar>a {
    text-decoration: none;
    color: black;
}

table {
    width: 90%;
    text-align: center;
    margin: 50px auto;
}

thead {
    font-size: 24px;
    color: white;
    background-color: #008080;
}

tbody {
    font-size: 20px;
}

th,
td {
    padding: 10px 0px;
    margin-bottom: 20px;
    border: 1px solid black;
}

body>h1 {
    text-align: center;
    margin: 20px auto;
    color: rgb(2, 59, 53)
}