* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    height:auto;
    margin:0;
    padding:0;
    background-color:#1e2030;
}
a {
    text-decoration: none;
    color: inherit;
}

.donors a {
    text-decoration: none;
    color: inherit;
    font-size:1.5rem;
    border: 1px solid white;
    margin-top:10vh;
    padding: 0.8rem 4rem;
    display: inline-block;
}

ul {
    list-style: none;
}

header {
    padding: 1% 2%;
    background-color: #000;
    width: 100%;
}
.nav-bar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: #000;
    width: 100%;
}

.logo {
    font-size: clamp(1rem, 2.1vw, 1.1rem);
    font-weight: bold;
    color: white;
    text-decoration: none;
}
nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
    transition: background-color 0.3s;
    text-decoration:none;
}

nav a:hover {
    background-color: #575757;
}

  .container {
    display:flex;
  }




  main {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    background: rgb(255, 255, 255);
  }

  section {
    margin-bottom: 2.5rem;
  }

  main h2 {
    color: #005792;
  }

  main a {
    color: #005792;
    text-decoration: none;
  }

  main a:hover {
    text-decoration: underline;
  }

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}
