@font-face {
    font-family: 'Pokerace';
    src: url("../font/AngryBirdsPixela.ttf") format('truetype');
}

* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: black;
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    gap: 16px;
}

main {
    gap: 32px;
    display: flex;
    width: 80%;
    max-width: 900px;
    padding: 30px 30px;
    border-radius: 16px;
}
form {
    background-color: white;
    border-radius: 16px;
    padding: 30px 30px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}


.pokemon_list {
    height: 90vh;
    overflow-y: scroll;
    width: 50%;
    background-color: white;
    padding: 30px 30px;
    border-radius:16px ;
}

li {
    width: 100%;
    list-style: none;
    text-align: center;
}

li img {
    width: 100%;
}

h2 {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    font-size: 2rem;
    font-family: "Pokerace";
    color: white;
    text-shadow:
    3px 3px 0 #000,
    -3px 3px 0 #000,
    -3px -3px 0 #000,
    3px -3px 0 #000;
}

.red {
    color: #F92034;

}

a {
    border: solid 3px black;
    font-size: 2rem;
    font-weight: 900;
    padding: 10px 30px;
    background-color: #F92034;
    color: white;
    text-decoration: none;
    border-radius: 32px;
    transition: all 0.3s ease-out;
    position: fixed;
    right: 0;
    bottom: 0;

}
a:hover {
    transform: scale(1.1);
}

input {
    border-radius: 8px;
    padding: 3px;
}
