* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s all ease;
  border: var(--borderWidth) solid var(--highlightColor);
}

html,
body,
p,
h1,
h2,
h3,
dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

*:focus {
  outline-color: var(--highlightColor);
}

::selection {
  background-color: var(--highlightColor);
}

body {
  background-color: var(--backgroundColor);
  font-family: var(--fontFamily);
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3 {
  font-weight: normal;
}

p {
  padding: 0.5rem;
}

h1 {
  padding-left: 10px;
  position: sticky;
  top: 0px;
  left: 20px;
  padding-bottom: 20px;
}

small,
footer,
.name {
  font-size: 0.65rem;
}
.name {
  font-style: italic;
}

footer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: fit-content;
}
footer:hover {
  color: var(--highlightColor);
}

.item {
  /* text-align: center; */
  background-color: var(--highlightColor);
  border-radius: 20px;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  height: fit-content;
  width: fit-content;
}

.item:hover {
  background-color: #00ff88;
}

.item-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.item-container .item {
  flex: 0 1;
}
