@import url("https://fonts.googleapis.com/css?family=Lato:300,400&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-image: url(./public/assets/pokeball_pattern.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Lato", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.title {
  width: 200px;
  height: 75px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.poke-container {
  align-items: space-between;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 50px;
  gap: 15px;
  max-width: 1200px;
  padding: 20px;
}

.pokemon {
  background-color: #eeeeee;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(100, 100, 100, 0.5);
  margin: 10px;
  padding: 20px;
  text-align: center;
}

.pokemon .img-container {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  height: 120px;
  text-align: center;
  width: 120px;
}

.pokemon .img-container img {
  margin-top: 20px;
  max-width: 90%;
}

.pokemon .info {
  margin-top: 20px;
}

.pokemon .info .number {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 0.8em;
  padding: 5px 10px;
}

.pokemon .info .name {
  letter-spacing: 1px;
  margin: 15px 0 7px;
}

::-webkit-scrollbar {
  display: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
