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

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Pokerace, Arial, sans-serif;
}

main {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    gap: 16px;
}

.InfoPokemon-container {
    padding: 30px 30px;
    border-radius: 16px;
    background-color: white;
    max-width: 900px;
    width: 80%;
}

.InfoPokemon-container form{
    display: block;
    margin-top: 16px;
    margin-right: auto;
    margin-left: auto;
    width: fit-content;
}

.InfoPokemon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.InfoPokemon img {
    width: 100%;
    max-width: 300px;
}

.SelectPokemon {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    width: 80%;
    padding: 30px 30px;
    border-radius: 16px;
    background-color: white;
    gap: 32px;
}

.linkStart {
    background-color: transparent;
    border: solid 3px black;
    font-size: 2rem;
    font-weight: 900;
    padding: 10px 30px;
    background-color: #5eb05e;
    color: white;
    text-decoration: none;
    border-radius: 32px;
    transition: all 0.3s ease-out;

}

.linkStart-red {
    background-color: transparent;
    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;

}

.linkStart:hover ,.linkStart-red:hover{
    transform: scale(1.1);
}
