* {
    margin: 0;
    padding: 0;

    font-family: 'Helvetica Neue', Arial, sans-serif;
}
body {
    background-color: #fff;
}
nav a {
    text-decoration: none;
    color:white;

}
nav {
    display: flex;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #0000ff, #000000);
    padding: 1.5rem;
    color: white;
    align-items: center;
    text-decoration: none;
}
ul {
    font-size: 16px;
}
nav ul {
    display: flex;
    justify-content: right;
    flex: 1;
    text-decoration: none;
    list-style: none;
}

nav ul li {
    margin: 0 1.5rem;
    font-weight: 400;
    list-style: none;
}
nav ul li:hover{
    text-decoration: underline;
}
nav a:hover{
    text-decoration: underline !important;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 16px;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* Adjust spacing between grid items as needed */
  width: 100%;
}
footer {
    background: #333;
    padding: 1rem;
    text-align: center;
    color: white;
}
