/*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;
}
/* container */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    font-size: 25px;
}

.container {
    max-width: 900PX;
    margin: 0 auto;
    padding: 40px;
}

h1 {
    text-align: center;
    color: #4CAF50;
    font-size: 40px;
    font-weight: bold;
}

.faq {
    margin-bottom: 20px;
}

.faq h2 {
    margin: 10px 0;
    color: #ffcc00;
    font-size: 32px;
}

.faq p {
    margin: 5px 0 15px;
    line-height: 1.6;
}

a {
    color: #00ffcc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    font-size: 10px;
    text-align: center;
}