body {
    background: lightblue url("background.avif") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    font-family: 'Arial', sans-serif;
    animation: fadeInAnimation 2s ease forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    z-index: -1;
}

header {
/*     background-color: rgba(0, 31, 88, 0.5); */
    padding: 15px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    color: #fff;
    background-color: rgba(61, 61, 61, 0.5);
}

nav a.active {
    color: #4fa3be; /* Highlight the active page */
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    color: #fff;
}

section h1 {
    margin-top: 0;
}

section p {
    line-height: 1.5;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #da1800;
}

.container {
    max-width: 75%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.team-member {
    max-width: 25%;
    flex: 1;
    background-color: rgba(24, 24, 24, 0.6);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto 15px;
}
