* {
    margin: 0%;
    padding: 0%;
}

.main {
    background: linear-gradient(to top,rgba(0, 0, 0, 0.5)50%, rgba(0, 0, 0, 0.5)50%), url(img/background.jpg);
    width: 100%;    
    height: 100%;
    background-position: center;
    background-size: cover;
    height: 100vh;
}
.navbar {
    width: 100px;
    height: 100px;
    margin: auto;
}
.menu {
    width: 100px;
    height: 20px;
    float: center;
}
.menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-list li {
    list-style: none;
    margin-top: 1px;
    padding: 30px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-family: serif;
}
.menu-list li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    transition: color 0.4s ease;
}
.menu-list li a:hover {
    color: rgb(255, 90, 0);
    font-weight: none;
}
h2 {
    color: rgb(255, 90, 0);
    text-align: center;
    margin-top: 20px;
}
p {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 10px;
}
.updates {
    width: 850px;
    height: auto;
    margin: auto;
    color: rgb(255, 255, 255);
    border: 2px solid rgba(255, 90, 0);
    border-radius: 5px;
    padding: 0px;
}
.updates-list {
    width: 100%;
    height: 430px;
    margin: 1px auto;
    padding: 0px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

.table-header {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 90, 0);
    padding: 10px;
}
tr {
    color: rgb(255, 255, 255);
    background-color: rgba(255, 89, 0, 0.3);
    padding: 10px;
    border-bottom: 1px solid rgb(255, 90, 0);
    border: 5px solid rgb(255, 90, 0);
}

.updates table tr:hover {
    background-color: rgb(255, 90, 0);
    color: rgb(0, 0, 0);
    transition: background-color 0.3s ease;
    font-weight: bold;
}
#current {
    color: rgb(255, 90, 0);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: rgb(255, 90, 0);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    text-decoration-style: solid;
    font-size: 23px;
}