:root {
  --primary-color: DodgerBlue;
  --background-color: white;
  --text-color: #111;
  --box-radius: 8px;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
body {
  background-color: white;
  color: DodgerBlue;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
  font-style: normal;
}


.header {
  background-color: DodgerBlue;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav-bar a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
}

.nav-bar a:hover {
  text-decoration: underline;
}
.box {
  background-color: #f9f9f9;
  /*border-radius: var(--box-radius);*/
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.2s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.box h2 {
  /*color: var(--primary-color);*/
  margin-bottom: 0.5rem;
}

