html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif; */
  background-color: beige;
  color: #2a3e2f;
  /* color: #4f755a; */
  overflow-x: hidden;
}

body{
  padding: 10px;
  text-align: center;
}

.topnav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* center the links */
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 22px 14px 140px; /* extra left padding so links don’t overlap brand */
  background: beige;
  border-bottom: 1px solid #235d2a;
  top: 0;
  z-index: 10;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
/* Style the links inside the navigation bar */
.topnav a {
  text-decoration: none;
  color: #1f2a1b;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition:  0.2s ease, color 0.2s ease;
}

/* Change the color of links on hover */
.topnav a:hover, .topnav a:focus-visible { 
    background: #e1f1dd; 
    color: #174c1c; 
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}
.Village {
  position: absolute;
  left: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #235d2a;
  font-size: 1.1rem;
  white-space: nowrap;
}


#footer{
  padding: 110px 0px 0px 0px;
  text-align: center;
}

h1 {
  text-align: center;
}

.us{
  width: 18vw;
  height: auto;
  border-radius: 20px;
}

#output{
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#leaves{
  position: absolute;
  left: 1.4vw;
  top: 3vh;
  transform: rotate(130deg);
   width: clamp(90px, 18vw, 190px);
  max-width: 190px;
  height: auto;
  z-index: 9999;
}
#leaves2{
  position: absolute;
  right: 2.7vw;
  top: 5vh;
  transform: rotate(-120deg);
   width: clamp(90px, 18vw, 190px);
   z-index: 9999;
}
#leaves3{
  position: absolute;
  left: -3vw;
  bottom: 0vh;
  transform: rotate(45deg);
   width: clamp(100px, 19vw, 200px);
   z-index: 9999;
}
#leaves4{
  position: absolute;
  right: -2.8vw;
  bottom: 2vh;
  transform: rotate(-45deg);
   width: clamp(100px, 18vw, 190px);
   z-index: 9999;
}


#wediv{
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}



.points-circle {
    background: #5b6e50;
    width: 25vw;
    height: 25vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2vh auto;
    box-shadow: 0 1.5vh 3vw rgba(0,0,0,0.3);
}

.points-number {
font-size: clamp(2vmin, 4vw, 6vmax);
    font-weight: bolder;
    color: white;
}

.points-header {
    text-align: center;
    margin-bottom: 10vh;
  }

.total-points {
    margin-bottom: 5vh;
    
}

.saved-goal-display {
    border: 0.5px solid #5b6e50;
    border-radius: 1.5vh;
    padding: 3vh 1vw;
    margin: 3vh auto;
    max-width: 50vw;
     box-shadow: 0 1.5vh 3.5vh rgba(91, 110, 80, 0.4)
}

.saved-goal-display h3 {
   color: #2a3e2f;
    font-size: 4vh;
    margin-top: 0;
    margin-bottom: 2vh;
    text-transform: uppercase;
    border-bottom: 0.3vh solid #5b6e50;
    padding-bottom: 1vh;

}

.goals-container {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(30vh, 1fr));
    gap: 3vh;
    max-width: 90vw;
    margin: 3vh auto;
    justify-content: center;
}

.goal-box {
    border: 0.4vh solid #5b6e50;
    border-radius: 1.5vh;
    padding: 2.5vh 2vw;
    box-shadow: 0 1.5vh 3.5vh rgba(91, 110, 80, 0.4);
}




