/* Reset some default styles for consistency */
body, h1, h2, h3, p, ul, li, form {
    margin: 0;
    padding: 0;
}

/* Set a background color and text color */
body {
    background-color: #f0f0f0;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Style the header section with the image and form */
header {
    position: relative;
    max-width: 100%;
    align-items: center;
}

img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover; /* This property ensures the image covers the entire container while maintaining its aspect ratio */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 0;
}

/* Style the navigation bar */
nav {
    color: #000000;
    position: relative; /* Make the navigation bar stack above the overlay */
    z-index: 2; /* Ensure the navigation bar is above the overlay */
    background-color: #0d6cbf;
}

nav a {
    color: white;
}

ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

li {
    margin: 0;
    padding: 0;
}

/* about.css */
a {
    padding: 20px;
    color: #3c3d3d; /* Blue color for links */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth color transition on hover */
}

/* Style links on hover */
a:hover {
    color: #0056b3; /* Darker blue color on hover */
    text-decoration: underline; /* Add underline on hover */
}

/* Add background color to columns */
.column1 {
    background-color: #f5f5f5; /* Specify your desired background color */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px; /* Add some spacing between pairs of columns */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/*info.css*/
.main {
    text-align: center;
    color: black;
}

.links img {
    width: 25%;
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px; /* Add some spacing between pairs of columns */
}

.column {
    flex-basis: calc(50% - 10px); /* Set the width for each column (50% - margin) */
    margin: 5px; /* Add a small margin between columns */
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}


@media screen and (max-width: 768px) {
    body{
        color: black;
    }
    .two-columns .column {
        flex-basis: 100%; /* Make columns stack one over the next */
    }
    .overlay{
        padding-top: 200px;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

  
    nav {
        position: static; /* Remove fixed positioning */
        background-color: transparent; /* Remove background color */
    }
    nav a{
        color: #000000;
    }

    ul {
        display: block;
        text-align: center;
    }

    li {
        margin-bottom: 10px;
    }
}