@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body {
  padding-top: 140px;
  background-color: #1a2843;
  margin-left: 15%;
  margin-right: 15%;
}

iframe {
  border: transparent;
}

h1 {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 25px;
  color: white;
}


h2 {
  font-family: "Space Grotesk";
  font-weight: 400;
  font-size: 25px;
  color: white;
}

p {
  font-family: "Space Grotesk";
  font-weight: normal;
  font-size: 20px;
  color: white;
}

a {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #006AC7;
}

.navbar {
  /* Remove left/right margins and use positioning for centering */
  position: fixed;
  top: 16px; /* 20px * 0.8 = 16px */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  z-index: 1000; /* Ensure it stays above other content */
  
  display: flex;
  width: 65%;
  height: 16px; /* 20px * 0.8 = 16px */
  padding: 16.8px 21.6px; /* 21px * 0.8 = 16.8px, 27px * 0.8 = 21.6px */
  justify-content: space-between;
  align-items: center;

  border-radius: 80px; /* 100px * 0.8 = 80px */
  border: 6.4px solid #10314C; /* 8px * 0.8 = 6.4px */
  background: linear-gradient(90deg, #1B3E5B 0%, #153C5D 100%);
}

.navHeader {
    font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  color: white;
}

.navItems {
  display: flex;
  width: 474.4px; /* 593px * 0.8 = 474.4px */
  height: 37.6px; /* 47px * 0.8 = 37.6px */
  justify-content: flex-end;
  align-items: center;
  gap: 8px; /* 10px * 0.8 = 8px */
  flex-shrink: 0;
}

.footer {
  margin-top: 10%;
  text-align: center;
  font-family: "Space Grotesk";
  color: white;
}

.grid-layout {
  display: grid;
}

/* Default button styles */
button {
  display: flex;
  width: fit-content;
  height: 37.6px; /* 47px * 0.8 = 37.6px */
  padding: 10.4px 22.4px; /* 13px * 0.8 = 10.4px, 28px * 0.8 = 22.4px */
  border: transparent;
  justify-content: center;
  align-items: flex-start;
  gap: 8px; /* 10px * 0.8 = 8px */
  flex-shrink: 0;
  background-color: transparent;
  color: #FFF;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 15px; /* 17px * 0.8 = 13.6px */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer; /* Add cursor pointer for better UX */
}

/* Active/Selected button styles - Note the .active class selector */
button.active {
  display: flex;
  width: fit-content;
  height: 100%;
  min-height: 40px; /* 50px * 0.8 = 40px */
  padding: 10.4px 22.4px; /* 13px * 0.8 = 10.4px, 28px * 0.8 = 22.4px */
  justify-content: center;
  align-items: center;
  gap: 8px; /* 10px * 0.8 = 8px */
  flex-shrink: 0;
  border-radius: 41.6px; /* 52px * 0.8 = 41.6px */
  background: #006AC7;
  border-color: transparent;
  border-radius: 41.6px; /* 52px * 0.8 = 41.6px */
  color: white; 
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 15px; /* 17px * 0.8 = 13.6px */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

button:hover {
  display: flex;
  width: fit-content;
  height: 100%;
  min-height: 40px; /* 50px * 0.8 = 40px */
  padding: 10.4px 22.4px; /* 13px * 0.8 = 10.4px, 28px * 0.8 = 22.4px */
  justify-content: center;
  align-items: center;
  gap: 8px; /* 10px * 0.8 = 8px */
  flex-shrink: 0;
  border-radius: 41.6px; /* 52px * 0.8 = 41.6px */
  background: #79a3eb;
  border-color: transparent;
  border-radius: 41.6px; /* 52px * 0.8 = 41.6px */
  color: white; 
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 15px; /* 17px * 0.8 = 13.6px */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}