body {
    font-family: Georgia, serif;
    background: url('../images/background.jpeg') no-repeat center center fixed; /* Set background image */
    background-size: cover; /* Ensure the image covers the entire background */
    color: white; /* White text for contrast */
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1, h3, p {
    color: white; /* Ensure all headings and paragraphs are visible */
}

.menu {
    margin-top: 50px;
}

#board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 5px;
    margin: 20px auto;
}

.cell {
    width: 100px;
    height: 100px;
    border: 2px solid white; /* White border for contrast */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black for contrast against background */
    color: white; /* White text in cells */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cell:hover {
    background-color: navy; /* Navy blue on hover */
}

button {
    background-color: navy; /* Navy blue for buttons */
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin: 10px 0;
    text-decoration: none;
    display: inline-block;
}

button:hover {
    background-color: #003366; /* Darker navy on hover */
    transform: scale(1.05);
}

button:focus {
    outline: none;
    box-shadow: 0 0 5px #003366; /* Subtle shadow on focus */
}

#status {
    margin-top: 20px;
    font-size: 1.2em;
    color: red; /* Keep red for status messages */
}

/* Responsive and centered adjustments */
.menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px;
    justify-content: center;
}

.project {
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black for projects */
}

.project:hover {
    transform: scale(1.05);
}

.project-image {
    width: 100%;
    height: auto;
    border-bottom: 2px solid navy;
}



.logo-image {
    width: 50px;
    height: auto;
}

/* Make the top banner white */
.top-banner {
    background-color: white; /* White banner */
    color: black; /* Black text */
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100vw; /* Ensure full width */
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ddd;
}

/* Style navigation links */
.top-banner a {
    /*color: black;*/
    margin: 0 1px;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
}

/* Ensure the hawk image is positioned correctly */
.logo {
    position: absolute;
    top: 40px;
    left: 10px;
    width: 80px;
    height: auto;
    z-index: 1100;
}

/* Add padding to avoid content being hidden under the fixed banner */
#home, #contact, #about{
    padding-top: 60px;
}

/* Container to hold the image and second paragraph in a row */
.container {
    display: flex;
    align-items: flex-start; /* Align content at the top */
    justify-content: flex-start;
    gap: 20px;
    margin-top: 0px;
    text-align: left;
}

/* Image styling */
.pic {
    max-width: 200px;
    height: auto;
}

/* Adjust the second paragraph positioning */
.container p {
    margin-top: 0; /* Remove any default margin */
    line-height: 1.2; /* Adjust line height to align with the image */
    vertical-align: top; /* Align top of text with image */
}

.h {
    font-family: Georgia, serif;
    background-size: cover; /* Ensure the image covers the entire background */
    color: rgb(0, 0, 0); /* White text for contrast */
    text-align: center;
    margin: 0;
    padding: 30px;
    text-decoration: none !important;
}
.c {
    font-family: Georgia, serif;
    background-size: cover; /* Ensure the image covers the entire background */
    color: rgb(104, 103, 103); /* White text for contrast */
    text-align: center;
    margin: 0;
    padding: 30px;
    text-decoration: none !important;
}
