body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    min-height: 100vh; /* Ensures body takes full height */
    display: flex;
    flex-direction: column; /* Allows header, content, footer stacking */
}

h1 {
    color: #fff;
}

.content {
    max-width: 70%;
    margin: 0 auto;
    flex: 1; /* Makes content take available space */
}

.head-banner {
    width: 100%;
    height: 35vh;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-banner-h1 {
    font-size: 450%;
}

.footer-banner {
    width: 100%;
    height: 20vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-banner-h1 {
    padding: 3.5%;
}

.inner-footer-banner {
    width: 80vh;
    height: 20vh;
    display: flex;
    align-items: center;
}

.link-footer-banner-h1 {
    padding: 3.5%;
}

.link-footer-banner-h1 a {
    margin-right: 2vh; /* Adjust the value to control the space */
}

.footer-links {
    text-decoration: none;
}

.small_text {
        font-size: 80%;
        padding: 0%;
}

.light_blue_div {
    padding: 0.01%;
    background-color: rgba(173, 200, 255, 0.5);
    border-radius: 1vh;
    padding: 1vh;
    border: 2px solid rgba(173, 200, 255, 0.5);
}