
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Creamy white background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Arial Black", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}
 /*nec/*


/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
    text-align: center; /* Center the content */
}

nav ul {
    list-style: none;
    display: inline-block; /* Display inline */
}

nav ul li {
    display: inline; /* Display inline */
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
}
 /*nec/*
  
/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
}

nav ul li a:hover {
    color: #a22121; /* Dark red color on hover */
}
/*nec/*

/* Global Styles */
body {
    font-family: 'Merriweather', serif;
    background-color: #222; /* Dark navy background */
    color: #f4f4f4; /* Creamy white text color */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    text-align: center;
}

span {
    display: inline-block;
    font-size: 24px; /* Adjust the size as needed */
    vertical-align: middle;
}



h1, h2, h3 {
    font-size: 24px; /* Adjust the font size as needed */
}

h2 {
    font-size: 32px; /* You can customize the font size of specific headers */
}




/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: none;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: rgb(226, 216, 216);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #222;
}









body {
    font-family: 'Merriweather', serif;
    background-color: #222;
    text-align: center;
    color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.team-section {
    margin-bottom: 40px;
}

.team-heading {
    font-weight: bold;
    font-style: italic;
    font-size: 28px;
    color: #a72929;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-members {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member {
    margin: 10px;
    padding: 10px;
    border: 1px solid #222;
    border-radius: 5px;
    font-style: italic;
    color: creamywhite;
    background-color: #222;
    animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Media Query for Secretariat CSS - Phones */
@media screen and (max-width: 480px) {
    /* Add your responsive styles for phones here */
  }
  
  /* Media Query for Secretariat CSS - Tablets */
  @media screen and (min-width: 481px) and (max-width: 768px) {
    /* Add your responsive styles for tablets here */
  }


 