* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/*header*/

li {
    list-style: none;
}

header {
    background-color: #306BB3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px;
    align-items: center;
}

header > img {
    width: 50%;
    max-width: 150px;
    margin-left: 3%;
}

header > div {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.list{
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

header > div > nav > ul > li > a {
    color: white;
    text-decoration: none;
}

button {
  background-color: white;
  color: #306bb3;
  border: none;
  min-width: 82px;
  min-height: 38px;
  border-radius: 4px;
}

/*middle*/
h1 {
    font-weight: 500;
    font-size: 40px;
    font-style: normal;
    display: flex;
    justify-content: center;
    color: #486284;
    margin-top: 50px;
    margin-bottom: 30px;
}

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

#allpokemons{
    margin: 50px;
}

.p2{
    position: absolute;
    width: 669px;
    height: 528px;
    left: 701px;
    top: 250px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    display: flex;
    align-items: center;
}


/*footer*/

footer {
    width: 100%;
  display: flex;
  background-color: #306bb3;
  color: white;
  justify-content: space-between;
  padding: 50px 30px;
  align-items: center;
}


footer > div > img {
    max-width: 150px;
    max-height: 55px;
}

footer > p {
    width: 50%;
}

.redes {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icons{
    display: flex;
    gap: 21px;
    font-size: 30px;
}

footer > div .icons > a {
    color: white;
}

.links {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.links > ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
}

.links > ul > li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

