:root {
  --clr-primary-400: 225 54% 58%;
  --clr-secondary-400: 217 19% 35%;
  --clr-secondary-500: 219 29% 14%;
  --clr-neutral-100: 0 0% 100%;
  --clr-neutral-200: 210 46% 95%;
  --clr-neutral-300: 0 0% 81%;
  
  --subtitle: 59 55% 88%;

  --ff-primary: "Barlow Semi Condensed", sans-serif;

  --fw-400: 500;
  --fw-700: 600;
  --fs-200: 0.2500rem;
  --fs-300: 0.6875rem;
  --fs-400: 0.8125rem;
  --fs-500: 1.25rem;
  --fs-600: 2.00rem;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1 {
  color: #3682f5;
}
h2 {
  color: #c3d3eb;
}
h3 {
  color: rgb(43, 43, 16);  
}
h4
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

p {
    margin 0 auto;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

.navbar ul {
    display: flex;
    background-color: rgb(61, 88, 224);
    list-style-type: none;
    padding: 15px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;   
}

.navbar li {
    padding: 35px;
}

.navbar a {
    display: block;
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 15px;
}

.navbar a:hover {
    color: dodgerblue;
}


/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a:link {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  display: grid;
  place-content: center;
  min-height: 100vh;

  font-family: var(--ff-primary);
  font-weight: var(--fw-400);

  background-color: hsl(var(--clr-neutral-200));
}

h1 {
    font-weight: var(--fw-700);
}
h2 {
    font-weight: var(--fw-500);
    font-size: var(--fs-500);
}
h3 {
  font-weight: var(--fw-700);
  font-size: fs-300;
}

/* utilities */
.flex {
  display: flex;
  gap: var(--gap, 1rem);
  padding-left: 10px;
}

.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-spacer, 1em);
}

.bg-primary-400 {
  background: hsl(var(--clr-primary-400));
}
.bg-secondary-400 {
  background: hsl(var(--clr-secondary-400));
}
.bg-secondary-500 {
  background: hsl(var(--clr-secondary-500));
}

.bg-neutral-100 {
  background: hsl(var(--clr-neutral-100));
}

.bg-subtitle {
  background: hsl(var(--subtitle));
}

.text-neutral-100 {
  color: hsl(var(--clr-neutral-100));
}
.text-secondary-400 {
  color: hsl(var(--clr-secondary-400));
}
.border-primary-400 {
  border: 1px solid #a775f1;
}

.item-one {
    padding-top: 10px;
}

/* components */

#container {
  width: 95vw;
  height: 160vh;
  margin: 0 auto;
  background-color: whitesmoke;
  outline: 8px solid #4834d4;
  display: grid;
}

/* ITEM */
.item {
  display: flex;
  justify-content: left;
  align-items: left;
  border: 1px solid #222;
  text-align: left;
  column-gap: 10px;
  box-shadow: 1px 2px 3px grey;
  border-radius: 8px;
  color: #222;
  font-size: 2em;
  font-family: arial, sans-serif;
  background-color: #89abd9;
  font-weight: bold;
  cursor: pointer;
}
.item:hover {
  color: #fff;
}

table {
    color: yellow;
}

table tr {
    padding: 15px;
}

#esdocs {
    border 1px solid #fff;
    background-color: yellow;
    padding: 25px;
}

.stakeholder {
    color: yellow;
}

.subtitle {
    color: #68c8e0;
    margin: 0 auto;
}

.site-title-color {
    color: #03a9f4;
}

