* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x:hidden;
    scrollbar-width: thin; 
    scrollbar-color: #ffffff #1f2123;
}
::-webkit-scrollbar {
  width: 8px; 
  height: 4px; 
}

::-webkit-scrollbar-track {
  background: #f3f4f6; 
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: #9ca3af; 
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover{
    background: rgb(0, 119, 255);
}
body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    height:auto;
    margin:0;
    padding:0;
    background-color:#0e0f17;
}
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;
}

nav a:hover {
    background-color: #575757;
}

.donors {
  min-height: 100vh;
  text-align: center;
  padding: 5% 2%;
  color: white;
}

.donors-title {
  font-size: 3rem;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.donors-title.visible {
  transform: translateX(0);
  opacity: 1;
}

.donor-separator {
  border: none;
  height: 2px;
  background: white;
  width: 70%;
  margin: 2rem auto;
  opacity: 0.5;
}

.donor-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.donor-list li {
  opacity: 0;
  transform: translateY(20px); 
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.donor-list li.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact {
    padding: 2rem 1rem;
    background-color: #1d2129;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.contact p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}

