:root {
  /* COLORS */
  --colorBackgroundMain: rgb(255, 255, 0);

  --blue: rgb(142, 173, 219);
  --brown: rgb(170, 146, 95);
  --yellow: rgb(255, 229, 142);
  --gray: rgb(199, 207, 220);
  --green: rgb(115, 156, 119);
  --purple: rgb(246, 173, 202);
  --red: rgb(236, 121, 121);
  --black: rgb(88, 88, 88);
  --violet: rgb(119, 79, 110);
  --white: rgb(230, 230, 230);
  --pink: rgb(246, 173, 202);

  /* DIMENSIONS */
  --maxWidthContent: 1720px;

  /* FORMATION */
  --borderRadiusMain: 18px;
}

/* HELPERS */
.center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.poke-bg-main {
  background-color: var(--colorBackgroundMain);
}
.poke-nav-active {
  color: rgb(0, 0, 0);
  border-bottom: 4px solid var(--blue);
}
.poke-nav-not-active {
  color: rgb(160, 160, 160);
  border-bottom: 4px solid rgb(240, 240, 240);
}
.dp-none {
  display: none;
}
.content-max-width {
  max-width: 1280px;
}
.m-bottom-0{
  margin-bottom: 0;
}
.p-right-8{
  padding-right: 8px;
}
.p-top-8{
  padding-top: 8px;
}
.max-height-of-320{
  max-height: 320px;
  overflow-y: scroll;
}
/* END HELPERS */

/* OVER ALL CONFIGURATIONS */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb  {
  background: var(--yellow);
  border-radius: var(--borderRadiusMain);
}
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
  transition: 120ms;
}
h1 {
  margin: 0;
}
/* END OVER ALL CONFIGURATIONS */

/* BOOTSTRAP CHANGES */
.card {
  border-radius: var(--borderRadiusMain);
  border: none;
}
.fixed-top {
  z-index: 1;
  background-color: white;
}
/* END BOOTSTRAP CHANGES */

/* MAIN CONFIGURATIONS */
.poke-card-types-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.poke-card-types-main-inner {
  width: fit-content;
  color: white;
  border: none;
  background-color: rgba(255, 255, 255, 0.363);
}
.poke-card-types-type {
  display: flex;
  padding: 4px 16px;
  font-size: 12px;
}
/* END MAIN CONFIGURATIONS */

/* INDEX HTML */
.body-main-container {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}
.body-main-top {
  z-index: 1;
  background-color: white;
}
.body-main-middle {
  z-index: 0;
  flex: 1;
  display: flex;
  justify-content: center;
}
.body-main-bottom {
  z-index: 0;
  background: var(--yellow);
  height: 80px;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
/* END INDEX HTML */

.imprint{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.336);
  text-align: center;
  height: 100vh;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 100%;
}
.imprint:hover{
  cursor: pointer;
}
.imprint-content{
  background-color: white;
  padding: 40px;
  border-radius: var(--borderRadiusMain);
}
