/*CSS variables section*/
:root {
    background-color:black;
}

body, html {
    height: 50%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
  
.hero-image {
    background-image: url("/img/banner.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
      
body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
}
  
#navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #333;
}
  
#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
#navbar a:hover {
    background-color: #ddd;
    color: black;
}
  
#navbar a.active {
    background-color: #04AA6D;
    color: white;
}

/* Create a right-aligned (split) link inside the navigation bar */
#navbar a.split {
    float: right;
    background-color: #0454aa;
    color: white;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}

h1 {
    color: #4CAF50;
    font-size: 40px;
    font-weight: bold;
    /*padding-left: 20px;*/
    text-align: center;
}

h2 {
    color: #4CAF50;
    font-size: 32px;
    font-weight: bold;
}

.container {
    padding: 40px;
}
.news-item {
    background: #1a1a1a;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}
.news-item h2 {
    margin-top: 0;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    font-size: 10px;
    text-align: center;
}

/* Hide the element on screens smaller than 600px */
@media (max-width: 900px) {  /*MAY NEED TO CHANGE BACK*/
#server-status {
    display: none;
  }
}

/* Hide the element on screens smaller than 600px */
@media (min-width: 850px) {  /*MAY NEED TO CHANGE BACK*/
    #server-status2 {
        display: none;
      }
    }