html { --toggle: hsl(230deg 17% 85%); --bggradient: url('assets/images/bg.png'); --bgcolor: none; --colorPrimary: #000; --filterHeading: #000; --selectBg: #fff; --selectText: #000; } html[data-theme='dark'] { --toggle: linear-gradient(90deg, hsl(216deg 52% 48%), hsl(51deg 100% 60%)); --bggradient: none; --bgcolor: #16171f; --colorPrimary: #fff; --filterHeading: #707384; --selectBg: #16171f; --selectText: #707384; } .app_container { display: flex; flex-direction: column; align-items: center; justify-items: center; min-height: 100vh; } @font-face { font-family: 'barcadebrawl'; src: url('assets/fonts/BarcadeBrawl.ttf'); } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-image: url('assets/images/bg.png'); background-size: initial; background-repeat: repeat; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } .pokemon__container { display: flex; flex-direction: column; align-items: center; justify-content: center; } .all__pokemons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; }