body {
    font-family: "Inconsolata", sans-serif;
    box-sizing: border-box;
    background: #f5f5f5;
    height: 100vh;
}
.page-title {
    color: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 100%;
    justify-content: center;
    display: flex;
}

.red {
    color: red;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}
.white {
    color: white;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}
.blue {
    color: blue;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

.row {
    display: flex;
    justify-content: center;
    text-align: center;
}

.wikiResults,
.row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    flex-basis: calc(100% - 1em);

}
.giphyResults {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    flex-basis: calc(100% - 1em);
    border-radius: 25px;
    box-shadow: 0 8px 6px -6px black;
    background-color: rgb(196, 196, 196);
}

#gif-2,
#gif-3 {
    display: none;
}

footer {
    text-align: center;
    padding: 100px;
}
.wiki-header {
    width: 100%;
    justify-content: center;
}
.title {
    font-weight: 200;
}

.wikiSearch {
    display: block;
    margin: 0 auto 25px;
    width: 90%;
    text-align: center;
    padding: 20px;
}

#searchBar {
    height: 50px;
    text-align: center;
    width: 80%;
    font-weight: 100;
    font-size: 1.5em;
    display: inline-block;
    font-family: "Inconsolata", sans-serif;
    font-weight: 100;
    color: #919191;
    padding: 30px 30px 40px;
    box-sizing: border-box;
    outline: none;
    border: none;
    border-bottom: 3px solid #ddd;
    background: transparent;
    margin: 20px auto;
    transition: border-bottom 0.5s ease;
}

#submitBtn {
    background: transparent;
    border: none;
    height: 50px;
    width: 50px;
    outline: none;
    cursor: pointer;
    margin-left: -50px;
}

#submitBtn i {
    color: #ddd;
}

#nbaplayerlist {
    display: block;
    text-decoration: none;
    text-transform: lowercase;
    font-weight: 100;
    letter-spacing: 3px;
    color: rgb(182, 182, 182);
    transition-property: color;
    transition-duration: 1s;
}

#nbaplayerlist:hover {
    color: #000000;
    transition-property: color;
    transition-duration: 1s;
}

#searchResults {
    list-style: none;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-left: 0;
    text-decoration: none;
    font-family: "Inconsolata", sans-serif;
}

a {
    text-decoration: none;
    color: black;
    font-family: "tahoma";
}

/* #noResults {
  color: #c8102e;
  font-weight: 400;
} */

.singleResult,
#searchResults {
    background: #fff;
    font-family: "Inconsolata", sans-serif;
    font-weight: 100;
    padding: 1%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    display: inline-block;
    margin: 10px;
    border-bottom: 1px solid #ddd;
    border-radius: 6px;
    color: #777;
}

ul {
    padding: 0;
}

li:hover {
    cursor: pointer;
}

.singleResult p {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.nba-stats {
    flex: 1;
    margin: 15px 0;
    display: flex;
    padding: 5px;
    overflow-x: auto;
    border-width: 0.5px;
    border-style: solid;
    border-color: #616161;
    border-radius: 25px;
    box-shadow: 0 8px 6px -6px black;
}

.stat-cat {
    flex: 1;
    display: flex;
    padding: 0 5px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #000;
}

.stat-cat-last {
    flex: 1;
    display: flex;
    padding: 0 5px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

::placeholder {
    color: #ddd;
}

/* .alert {
  border-bottom: 3px solid #000000 !important;
  transition: border-bottom 0.5s ease;
} */
.player-info {
    width: 100%;
}

.no-stats {
    width: 100%;
    justify-content: center;
}
.hide {
    display: none !important;
}

/* Mobile first queries */
/* Larger than tablet */
@media(min-width: 750px) {
    .wikiResults,
    .giphyResults,
    .row {
        flex-basis: calc(100% - 1em);
    }
}

/* Larger than desktop */
@media(min-width: 1000px) {
    .wikiResults,
    .giphyResults,
    .row {
        flex-basis: calc(100% - 1em);
    }

    #gif-2 {
        display: inline;
    }
}

/* Larger than Desktop HD */
@media(min-width: 1300px) {
    .wikiResults,
    .giphyResults,
    .row {
        flex-basis: calc(100% - 1em);
    }
    #gif-2,
    #gif-3 {
        display: inline;
    }
}
