body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background-container {
    background: url('newbackground.jpg') center/cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    background-color: rgba(51, 51, 51, 0.7); /* Transparent background */
    padding: 1em;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 0px; /* Adjust margin as needed */
}

.logo-container {
    max-width: 1024px; /* Adjust the max-width as needed */
    height: 70px;
    margin: 0 auto;
    position: relative;
}

.logo-img {
    width: 100%;
    height: 50;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

nav {
    display: flex;
    height: 40px;
    margin-top: 5px;
    justify-content: center;
    align-items: center;
}

nav a {
    display: inline-block;
    color: white;
    text-align: center;
    margin-top: 0px;
    padding: 14px 16px;
    text-decoration: none;
    justify-content: center;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

.server-info {
    text-align: right;
    color: white;
}

.green-text {
    color: green;
}

.closed {
    color: red;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #333;
    color: white;
    position: relative;
}
