body
{
    background-image: url(Img/pexels-moments-11738628.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;

    background-color: lightslategray;
}

/* Space out the links */
.navbar li {
    margin: 0 20px;
}

.navbar ul
{
    list-style: none;
    text-align: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

/* Style the links */
.navbar a {
    display: block;
    padding: 3px;
    
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hover effect (very important for modern sites) */
.navbar a:hover {
    background-color: darkorange;
    border-radius: 12px;
}

table, td, th
{
    border-collapse: collapse;
    border: 2px lightslategray;
    opacity: 0.85;
    text-align: center;
    font-size: 20px;
}

th, td
{
    padding: 10px;
    text-align: center;
}

tr:nth-child(even)
{
    background-color: darkorange;
}

tr:nth-child(odd)
{
    background-color: lightsteelblue;
}