body {
    --color-primary: #009579;
    --color-primary-dark: #007f67;
    --color-seconday: #252c6a;
    --color-error: #cc3333;
    --color-success: #4bb544;
    --border-radius: 0px;
    font-size: 14px;
    background: url(hawks.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0e0e0e;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}
.logo {
    width: 8%;
    height: 8%;
    margin-top: -2%;
    right: 1%;
    position: fixed;
}
.nav__links {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
li {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-style: oblique;
    font-variant: small-caps;
    font-size: 20px;
    font-weight: 100;
    text-decoration: none;
    color: white
}
header {
    display: flex;
    margin-top: 5%;
    justify-content: flex-end;
    align-items: top;
    padding: 10px 10%;
    text-align: top;
}
.nav__links {
    list-style: none;
    
}
.nav__links li {
    display: inline-block;
    padding: 0px 10px;
    color: red;
    
}
.nav__links li a {
    transition: all 0.3s ease 0s;
    color:white
    
}
.nav__links li a:hover {
    color: lightgreen;
    cursor: pointer;
}
.nav__links li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 0rem;
    justify-content: flex-end;
    display: none;
}
.nav__links li:hover > ul,
.nav__links li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}
.nav__links li ul li {
    clear: both;
    width: 90%;
}
.nav__links li ol {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 0rem;
    justify-content: flex-end;
    display: none;
}
.nav__links li:hover > ol,
.nav__links li ol:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}
.nav__links li ol li {
    clear: both;
    width: 90%;
}
h1 {
    font-size: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

h2 {
    font-size: 60px;
    font-family: 'Caramel', cursive;
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: green;
}
h3 {
    font-size: 2px;
    font-family: 'Caramel', cursive;
    color: #4bb544;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.server_footer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff; /* White text color */
    left: 50%;
    top: 3%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 10vh; /* Changed to viewport height for responsiveness */
    border-radius: 10px; /* Added rounded corners */
    background: transparent;
}
.server_1 {
    box-shadow: 0 0 50px rgba(1, 0, 0, 1.1);
    background: lightgray;
    margin: 2%;
    border-radius: 10px; /* Added rounded corners */
    width: 25%;
    text-align: center;
    font-size: small;
    color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.server_2 {
    box-shadow: 0 0 50px rgba(1, 0, 0, 1.1);
    background: lightgray;
    border-radius: 10px; /* Added rounded corners */
    width: 25%;
    text-align: center;
    font-size: small;
    color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.ONLINE {
    color: green;
}

.OFFLINE {
    color: red;
}
.footerBottom {
    background-color: #000;
    text-align: center;
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
}
.footerBottom p{
    color: white;
}
.designer{
    color: green;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0px 5px;
}