* {
    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%;
    background-position: center;
    background-size: cover;
    height: 100vh;
}
.navbar {
    width: 1200px;
    height: 75px;
    margin: auto;
}
.menu {
    width: 400px;
    height: 70px;
    float: left;
}
.menu-list {
  float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-list li {
    list-style: none;
    margin-left: 62px;
    margin-top: 1px;
    font-size: 18px;
    font-family: serif;
}
.menu-list li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.4s ease;
}
.menu-list li a:hover {
    color: rgb(255, 90, 0);
}
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: 12px;
}

.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;
}