* {
  box-sizing: border-box;
}

body {
        background-color: #F5F5F5;

}

.NavbarContainer {
  height: 90px;
  background-color: #F55A5A;
  padding: 30px 25px;
}

.nav{
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
}

.NavItems {
  display: flex;
  gap: 1.5rem;
}

nav > img {
  width: 150px;
  margin-right: 7px;


}

nav > span {
  color: #F5F5F5;
  font-family: 'Racing Sans One', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
}


a:link {
  color: White;
}

a:visited {
  color: White;
}

a:hover {
  color: White;
}

/* upvoting system css things */
:root {
  --bg: #0f0f0f;
  --card: #1a1a1a;
  --accent: #ff4500;
  -text: #e8e8e8;
  --muted: #888;
}

.post-card {
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  color: white;
}

.upvote-btn {
  background: none;
  border: 1px solid #333;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.upvote-btn.voted {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 69, 0, 0.1);
}

.upvote-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

