body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  /* background-color: #f0f0f0; */
}

header {
  /* background-color: #ffcb05; */
  text-align: center;
  padding: 20px 0;
}

h1 {
  margin: 2rem;
  color: red;
  font-size: 2.5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.header-nav {
  list-style: none;
  display: inline-flex;
  justify-content: center;
}

.header-nav a {
  text-decoration: none;
  padding: 15px 50px;
  margin: 2px;
  background-color: rgb(227, 227, 227);
  color: #03a4ad;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.header-nav a.active,
.header-nav a:hover,
.header-nav a:active {
  background-color: #03a4ad;
  color: white;
}

.header-nav a:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.header-nav a:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

main {
  padding: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 20px;
  margin-bottom: 20px;
  justify-items: center;
}

.pokemon-card {
  background-color: rgb(227, 227, 227);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1;
  width: fit-content;
}

.pokemon-caught {
  background-color: #d4edda;
}

#load-more {
  background-color: #03a4ad;
  color: #ffffff;
  font-size: 1rem;

  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#load-more:hover {
  background-color: #03a4ad81;
  color: white;
}

aside {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.hidden {
  display: none;
}

button {
  margin: 10px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
