:root {
  --accent: #f16c06;
  --muted: #f4ebeb;
  --bg: #c9ecd5;
  --card: #8ee1f0;
}
body {
  font-family: "Inter", Arial, sans-serif;
  color:rgb(129, 211, 165);
  background: var(--bg);
  margin: 0;
  color: #222;
  line-height: 1.6;
}
p{
  text-align: justify;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.marquee {
    position: absolute;
    white-space: nowrap;
    -webkit-animation: rightThenLeft 50s linear;
}

@-webkit-keyframes rightThenLeft {
    0%   {left: 0%;}
    50%  {left: 100%;}
    100% {left: 0%;}
}

header {
  background: #1aa33f;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}
.blinking-text {
  animation: blinking 1.5s infinite;
  color: #0b5ecf;
}
@keyframes blinking {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.brand-title {
  font-weight: 700;
  color: var(--accent);
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #0b5ecf;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.people {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.person {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  min-width: 200px;
}

footer {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 30px;
}














