* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

:root {
  --header-bg-transparent: rgb(255 255 255 / 5%);
  --header-bg-scrolled: rgba(255, 255, 255, 0.8);
  --text-color: #ffffff;
  --text-color-scrolled: #1a1a1a;
  --accent-color: #ff4757;
  --transition-speed: 0.4s;
}

body {
  width: 100vw;
  min-height: 100vh;
  background-color: #0a192f;

}

header {
  height: 12vh;
  width: 100%;
}

.main-header {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--header-bg-transparent);
  border-bottom: 1px solid #178b4b;
}

.header-container {
  margin: 0;
  padding: 0;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.logoicon {
  background-color:;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.2rem;
  padding-left: 1rem;
}

.bi-piggy-bank {
  color: rgb(23, 139, 75);
  width: 1.2rem;
}

.logo span {
  color: black;
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  background-color:;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 1.5rem;
  gap: 1rem;
}

.nav-item {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color var(--transition-speed);
  font-size: 1rem;
}


