﻿body {
    background-color: lightpink;
    border: none;
}

h1 {
    font-size: 50px;
}

#header {
    background-color: inherit;
    border: none;
}

#search-bar {
    height: 30px;
}

#search-bar > div {
    box-sizing: border-box;
    margin: 0;
    border: 0;
    text-align: center;
    float: left;
    width: 25%;
    height: 20px;
}

#lists-container {
    background-color: inherit;
    padding: 0;
    border: none;
}

#match-list {
    float: left;
    width: 48%;
    box-sizing: border-box;
}

#favorites-list {
    float: right;
    width: 48%;
    box-sizing: border-box;
}

div[id*="pokemonDiv"]:hover {
    background-color: lightpink;
}