/* Banner */
.banner {
    background-color: #292A30;
    background-image: url("img/Lettering@0.5x.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 50px;
    padding: 20px;
}


/* Navigation menu */
nav {
    background-color: #797A7E;
    padding: 10px;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 15px;

}

nav a.active {
    background-color: #555; /* Change background color for active link */
    padding: 10px;
}


/* Main body */
body {
    background-color: #E8F2FF; /* E8F2FF, CACACC*/
    color: #292A30;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh; 
}

body img {
    max-width: 100%;
    height: auto; /* Ensures the image maintains its aspect ratio */
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;    /* Center the container on the page */
    justify-content: space-between; /* Space between columns */
    padding: 20px; /* Padding for spacing */
    display: flex;
}


.column {
    flex: 1; /* Each column takes up equal space */
    padding: 0 10px;
    /*border: 1px solid #ccc; /* Border for visual separation */
    text-align: center;
}

.column img {
    max-width: 100%; /* Ensure image does not exceed column width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center the image horizontally */
    margin: 0 auto; /* Center the image vertically */
    border-radius: 5px; /* Rounded corners */
}




h1 {
    color: #0B4F79;
}

h2 {
    color: #0B4F79;
    font-size: 1.1em;
}

h3 {
    color: #326D74;
    font-size: 1.0em;
}

p {
    line-height: 1.2; /* amount of vertical space between lines of text */
}


/* Footer */
footer {
    background-color: #292A30;
    color: #CACACC;
    text-align: center;
    padding: 1px;
    position: relative; /* absolute, fixed, relative */
    bottom: 0;
    width: 100%;
}


/* Buttons */
.button {
    display: inline-block;
    width: 100%;
    padding: 10px 0px;
    background-color: #0B4F79; /* Blue color, you can change it */
    color: #fff; /* Text color */
    text-decoration: none; /* Remove default underline */
    border-radius: 5px; /* Rounded corners */
    overflow: hidden; /* Ensure image fits inside button */
    position: relative; /* Position for image overlay */
}

.button:hover {
    background-color: #292A30; /* Darker blue color */
}

.button img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ensure image covers entire button */
    height: 100%; /* Ensure image covers entire button */
    object-fit: cover; /* Maintain aspect ratio */
}


/* Clear the float so that the next section starts below the floated image */
.clear {
    clear: both;
}


/* Styling for links */
a {
    color: #1C00CF; /* Default link color */
    text-decoration: none; /* Remove underlines by default */
    /*font-weight: bold;*/
}

a:hover {
    color: #A4CDFF; /* Change the color to your desired hover color */
}



