body {
  color: white;
  background: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

nav {
  top: 0;
  display: grid;
  min-width: 100lvw;
  background: #242424;
}

.pokeball{
  position: relative;
  height: 25px;
  width: 25px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  overflow: hidden;
  margin: 1em;
}

.pokeball::before {
  content: "";
  position: absolute;
  background: red;
  width: 100%;
  height: 50%;
}

.pokeball::after {
  content: "";
  position: absolute;
  top: calc(50%);
  width: 100%;
  height: 50%;
  background:  white;
  border-top: 2px solid #000;
}

.pokeball-button {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 2px solid #000;
  border-radius: 50%;
  top: calc(50% - 0px - 4px);
  left: calc(50% - 0px - 4.7px);
  z-index: 10;
  background: white;
}

.title {
  position: absolute;
  margin-left: calc(50% - 70.8px);
  margin-right: 50%;
}

.section-global, .section-images{
  display: none;
  margin: 1em;
}

.section-images {
  margin-top: 2em;
}

.section-tables {
  display: flex;
  flex-direction: row;
}

.section-info, .section-stats {
  margin: 10px;
  padding: 10px;
  background-color: #242424;
}

table span {
  color: cadetblue;
  margin-left: 50px;
}