@font-face {
    font-family: 'FontePokemon';
    src: url('Fonts/pokemon/Pokemon-Solid.ttf') format('truetype');
}

#titulo_principal {
    font-family: 'FontePokemon', sans-serif;
    font-size: 10vh;
    text-align: center;
    color: #ffcb05; 
    -webkit-text-stroke: 2px #3b4cca; /* contorno azul */
}

body {
    background-image: url('Images/back1.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}

#div_pesquisa {
    /* Usa Flexbox para organizar o conteúdo */
    display: flex; 
    
    /* Centraliza o conteúdo horizontalmente */
    justify-content: center; 
    
    /* Define uma largura máxima para o formulário */
    max-width: 500px; 
    
    /* Adiciona margens automáticas nas laterais para centralizar a div inteira */
    margin: 0 auto; 
}

#div_pesquisa input::placeholder {
    font-size: 15px;
}

#abaixar_pesquisa {
    margin-top: 5vh;
}

#div_pesquisa form {
    display: flex;
    gap: 10px; /* espaço entre input e botão */
    width: 100%;
}


