/* Reset and body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body styling*/
body {
    font-family: Arial, sans-serif;
    color: white; /* Darker color for readability */
    background-image: url('img/backgroundblack.avif');
    background-size: cover;
    background-attachment: fixed;
}

/* Header styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    height: 100px   ;
    background-color: darkblue; /* Slight transparency for sky blue */
    box-shadow: white; /* Subtle shadow effect */
    border-radius: 8px; /* Rounded corners */
    margin: 20px;
}

.logo img {
    width: 180px; /* Logo size */
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Shadow for logo */
}

/* Navigation styling */
nav {
    background-color: transparent;
    border: none;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}   

nav ul li a {
    color: white; /* Dark blue for links */
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

nav ul li a:hover {
    color: black; /* Highlight on hover */
    transform: scale(1.1); /* Slight enlargement on hover */
}

main {
    width: 90%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

h1 {
    color: darkblue;
    font-size: 2em;
    margin-bottom: 20px;
}

h2 {
    color: darkblue;
    
}

h3 {
    color: black;
}

p {
    color: black;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    color: black;
    margin: 10px;
    width: 200px;
    text-align: center;
}

.team-member img {
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    font-size: 20px;
    color: #333;
    margin: 0;
}

footer p {
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: white;
    margin: 0;
}
