* {
    font-family: "Verdana", serif;
}

body {
    background-color: rgb(42, 41, 41);
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#title {
    text-align: center;
    padding-bottom: 10px;
    color: rgb(255, 255, 255);
    font-size: 50px;
    text-shadow: 5px 5px rgb(0, 0, 0);
}

.pokecard {
    text-align: center;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 2px black;
    width: 150px;
    height: 220px;
    border-radius: 20px;
}

@media only screen and (max-width: 920px) {
    #container {
        width: 100%;
    }
}