
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}


#raca {
    padding: 12px;
    font-size: 18px;
    border: 2px solid #3717ee;
    border-radius: 5px;
    width: 250px;
    margin-bottom: 10px;
    text-align: center;
    transition: border-color 0.3s ease;
    outline: none;
}

#raca:focus {
    outline: none;
    border-color: #000000;
}

#pesquisar {
    background-color: #868686;
    cursor: pointer;
}

#pesquisar:hover {
    background-color: rgb(255, 255, 255);
}





#galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 0 20px;
    margin-top: 20px;
    padding-bottom: 20px;
    top: 120px;
}


#galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


#galeria img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
