:root {
  --fulbright-blue: #00196e;
  --fulbright-blue-muted: #1b2a5e;
  --fulbright-gold: #ffad1d;
  --fulbright-sky: #ceedf6;
  --fulbright-stone: #e1e1de;
  --white-muted: #f8f8f8;

  
  --text-primary: #222;
  --text-secondary: slategray;
  --text-highlight: var(--fulbright-blue-muted);
  --card-shadow-color: #ddd
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  transition: 200ms ease-in-out;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--white-muted);
}

/* --- Header Styles --- */
header {
  background-color: var(--fulbright-blue-muted);
  color: white;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* --- Main Content Area --- */
main {
  flex: 1; /* Takes up remaining width */
  padding: 30px;
  overflow-y: auto; /* Allows scrolling within main area if needed */
}

/* --- Footer Styles --- */
footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 15px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}


a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}



.centerchild {
  display: flex;
  justify-content: center;
  align-items: center;
}




.card {
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0px 4px 8px var(--card-shadow-color);
  overflow: hidden;
  background-color: white;
}
.card-hoverable:hover {
  translate: 0px -2px;
  box-shadow: 0px 6px 12px var(--card-shadow-color);
}
.card-large {
  border-radius: 32px;
  padding: 32px;
}
.card-borderless {
  padding: 0px;
}

.clickable {
  user-select: none;
  cursor: pointer;
}
.button {
  user-select: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px;
  overflow: hidden;
  border: none;
  padding: 8px 24px;
}
.button-hoverable:hover {
  translate: 0px -2px;
}
.button-primary {
  background-color: var(--fulbright-blue-muted);
  color: var(--white-muted);
  box-shadow: 0px 2px 6px var(--card-shadow-color);
}
.button-primary:hover {
  filter: brightness(1.4);
}
.button-primary.button-hoverable:hover {
  box-shadow: 0px 4px 12px var(--card-shadow-color);
}
.button-large {
  padding: 12px 32px;
}
.button-small {
  padding: 6px 12px;
}






.lato-thin {
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-weight: 900;
  font-style: italic;
}
