body {
    background-color: black;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

header{
    position: relative;
}

.pages {
    display: flex;
    text-align: center;
    flex-direction: row;
    font-family: sans-serif;
    height: 70px;
    z-index: 100; /* Ensure header is on top of other elements */
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width:100%;
    top: 0px;
    justify-content: center;
    vertical-align: middle;
    font-size: 30px !important;
}

.pages a {
    color: white;
    text-decoration: none;
    padding: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: -3px;
    transition: 0.4s;
    font-size: 30px !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 101; /* Ensure links are on top of the header background */
    position: relative;
    height: 35px;
    vertical-align: middle;
}

.pages a:hover {
    color: black;
    background-color: white;
    transition: 0.4s;
}

.banner-container {
    width: 100%;
    position: relative; /* Container should position itself relative to the page */
    z-index: 50; /* Lower z-index to allow content to be layered above it */
}

.banner {
    width: 100%;
    height: auto;
    display: block;
    position: relative; /* Use relative positioning for normal flow */
    top: 0px;
}

.heading-container {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background for readability */
    z-index: 1;
    margin-top: 20px; /* Space below the banner */
}

h1 {
    font-size: 60px;
    color: white;
    font-family: sans-serif;
    margin: 0;
}

.content {
    padding: 20px; /* Increased padding for spacing */
    position: relative;
    margin-top: 20px; /* Added margin to create space between the heading and the content */
    color: white;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}

p {
    font-family: sans-serif;
    padding-bottom: 15px;
}

h2 {
    text-align: center;
    font-size: 35px;
    color: white;
    font-family: sans-serif;
}
img{
    height: 200px
}
.large{
    height: 500px
}

footer {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height: 20px;
    background-color: rgb(24, 24, 24);
    text-align: center;
    color: white;
    padding-bottom: 25px;
}

html {
    scroll-behavior: smooth;
}