* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consolas, sans-serif;
}

:root {
  --bg-color: #031321;
  --primary-color: #2196f3;
  --secondary-color: #255784;
}

body {
  background: var(--bg-color);
  /*
    display: flex;
    justify-content: center;
    background: var(--bg-color);
      */
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  padding: 5px 5px;
  color: var(--primary-color);
  /*text-transform: uppercase;*/
  letter-spacing: 0px;
  text-decoration: none;
  font-size: 16px;
}

h2 {
  padding: 5px 5px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 10px;
  text-decoration: none;
  font-size: 16px;
}
h3 {
  padding: 5px 0px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-decoration: none;
  font-size: 16px;
}
p {
  /*
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  word-spacing: 0px;
  color: #000000;
  font-weight: normal;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  */
}

/* unvisited link */
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

/* selected link */
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

img {
  width: 16px;
  height: auto;
  top: 3px;
  position: relative;
}