body, html{
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color:#05649a;
    overflow: hidden;
}



/* index.html -> welcome page and click through area */
.welcome{
    display: flex;           /* establish flex container */
    justify-content: center; /* center items vertically */
    align-items: center;     /* center items horizontally */
    height: 100%;
    width: 100%;
    z-index: 0;
    background-repeat:no-repeat;
    background-position: center center;
    background-image: url("images/welcome_background.png");
    opacity: 1; /* Initially fully visible */
    transition: opacity 0.5s ease-in-out; /* For the fade-out effect */
}

welcome.fade-out {
    opacity: 0;
}

.welcome_click_through{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    margin-top: -250px; /* Half of the height */
    margin-left: -250px; /* Half of the width */
    z-index: 1; /* Ensure it's on top */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
        }

.welcome_click_through_link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Remove default link styling */
    cursor: pointer; /* Indicate it's clickable */
}

/* ---------------------- END ----------------------- */


/* base css for other pages */

.page_container{#
    display: flex;           /* establish flex container */
    justify-content: center; /* center items vertically */
    align-items: center;     /* center items horizontally */
    background-repeat:no-repeat;
    background-position: center center;
    height: 100%;
    width: 100%;
    padding: 0px;
    margin: 0px;
    z-index: 0;
    background-image: url("images/website_background.png");
}

.footer{
    position: absolute;
    font-size: 0.75em;
    bottom: 0;
    width: 100%;
    color:black;
    text-decoration: none;
    text-align: center;
    background-color: white;
    opacity: 0.75;
}


/* Content container */
.page_container{
    display: inline-block;
    border: 2px solid #00ffff; /* Neon Blue border */
    height: 100%;
    width: 100%;
    padding: 10px;
    margin: 10px;
    z-index: 10;
    overflow: auto;
    justify-content: flex-start;
}


.content_container > * {
    opacity: 1;
}

.content_title{
    display: flex;
    height:30%;
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    }


.content_title img{
    justify-content: center;
    width: auto;
    height: 100%;
    margin: auto;
    padding: 10px;
}


.content_title > h1{
    font-size: 3em;
    font-color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff; /* Neon glow effect */
}



.content_body{
    display: flex;
    margin: 50px;
    line-height: 200%;
    font-size: 2vh;
    width: 90%;
    justify-content: space-between;
}

.iframe_box {
            width: 30%; /* Each iframe takes up roughly 30% of the container */
            height: 300px; /* Example height; adjust as needed */
            border: 2px solid #00ffff; /* Optional border */
            box-sizing: border-box; /* Include border in width calculation */
        }

.iframe_box iframe {
            width: 100%;
            height: 100%;
            border: none; /* Remove iframe border */
        }

.iframe_box form input{
            width: 100%;
            height: 100%;
        }

@media (max-width: 768px) { /* Optional: Responsive adjustments for smaller screens */
            .content_container {
                flex-direction: column; /* Stack iframes vertically on smaller screens */
                align-items: center; /* Center items horizontally */
            }

            .iframe-box {
                width: 90%; /* Take up most of the width on smaller screens */
                margin-bottom: 20px; /* Add space between stacked iframes */
            }
        }



.content_body  a{
    text-decoration: black underline;
    color: black;

}

.form_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between buttons */
}

.button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #00ffff; /* Neon Blue border */
    border-radius: 30px;
    color: #00ffff; /* Neon Blue text color */
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Added box-shadow transition */
}

.button:hover {
    background-color: rgba(0, 255, 255, 0.2); /* Slightly transparent neon blue on hover */
    color: #fff; /* White text on hover */
    box-shadow: 0 0 10px #00ffff; /* Neon glow on hover */
}

p {
    font-size: 1.2em;
    text-shadow: 0 0 5px #00ffff; /* Subtle neon glow for paragraphs */
}