body {
    margin: 0;
    color: #000;
    background-color: #00265f;
}

@font-face {
    font-family: "Chintzy";
    src: url("fonts/chintzy-webfont.eot");
    src: url("fonts/chintzy-webfont.eot?#iefix") format("embedded-opentype"),
    url("fonts/chintzy-webfont.woff") format("woff"),
    url("fonts/chintzy-webfont.ttf") format("truetype"),
    url("fonts/chintzy-webfont.svg#MicrosoftYaHei") format("svg");
}

header {
    width: 100%;
    color: white;
    font-family: "Chintzy";
    font-size: 60px;
}

header h1 {
    text-align: center;
    margin: 1% auto;
}

.d-none {
    display: none;
}

.half {
    display: flex;
    background-color: #fff0c9;
    margin: 10px auto;
    outline: 10px outset #888888;
    outline-offset: 0;
    border-radius: 13px;
    flex-direction: column;
    justify-content: center;
}

.body-container {
    display: flex;
}

@media (min-width: 600px) {
    .half {
        width: 90%;
    }

    .body-container {
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
    .half {
        width: 40%;
    }

    .body-container {
        flex-direction: row;
    }
}

.d-flex {
    display: flex;
    align-items: center;
}

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

.center-flex {
    margin: 10px auto;
}

.lcd-input {
    background-color: #9dc63f;
    color: #000;
    text-align: center;
    border: 16px groove #888888;
    border-radius: 13px;
    font-family: "Chintzy";
    font-size: 30px;
    width: 80%;
}

.btn {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    color: #fff;
    background-color: #6390f0;
    font-weight: 900;
    vertical-align: middle;
}

.btn:disabled {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    color: #fff;
    background-color: #a2a2a2;
    font-weight: 900;
    vertical-align: middle;
}

.column-elements {
    display: flex;
    flex-direction: column;
}

.pokedisplay {
    max-width: 80%;

    width: 80%;

    margin: 0 auto;
    height: auto;
    border: none;
}

.pokedisplay-container {
    background-color: #888888;
    width: 90%;
    height: 550px;
}

.pokemon-type {
    margin: 10px;
    padding: 5px 20px;
    border-radius: 10px;
}

.pokemon-types-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.row-element {
    margin: 20px;
}

.normal {
    background-color: #a8a77a;
}

.fire {
    background-color: #ee8130;
}

.water {
    background-color: #6390f0;
}

.electric {
    background-color: #f7d02c;
}

.grass {
    background-color: #7ac74c;
}

.ice {
    background-color: #96d9d6;
}

.fighting {
    background-color: #c22e28;
}

.poison {
    background-color: #a33ea1;
}

.ground {
    background-color: #e2bf65;
}

.flying {
    background-color: #a98ff3;
}

.psychic {
    background-color: #f95587;
}

.bug {
    background-color: #a6b91a;
}

.rock {
    background-color: #b6a136;
}

.ghost {
    background-color: #735797;
}

.dragon {
    background-color: #6f35fc;
}

.dark {
    background-color: #705746;
}

.steel {
    background-color: #b7b7ce;
}

.fairy {
    background-color: #d685ad;
}

.pokemon-stat {
    color: yellow;
    text-align: center;
    background-color: #000;
    width: 60px;
    height: 60px;
    border: none;
}

.pokemon-stat-table {
    color: yellow;
    text-align: center;
    background-color: #000;
    border: none;
    margin: auto;
}

ul {
    height: 100px;
    max-width: 100%;
    color: white;
    overflow-y: scroll;
    list-style-type: none;
}

#pokemonMoves li::before {
    content: "💾 ";
}

#pokemonAbilities li::before {
    content: "⛏️ ";
}