@import url(/styles/global.css);
@import url(/styles/style.css);


body{

    font-family: "Roboto", sans-serif;
    letter-spacing: 2px;
    color: black;
    font-weight: 300;

}

.dog-card{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: black;
}
.dog-card div{
    background-color: #BCA067;
    padding: 5px;
    border-radius: 5px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    
}

.dog-card div img{
    max-width: 200px;
    object-fit: contain;
}

#resultados {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 80%;
    align-items: center;
    margin: 2rem auto;

}
#resultados .dog {
    height: 100%;
    color: black;
}
.active{
    display: flex;
}


#resultados .dog a{
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 10px;
    color: black;
    text-decoration: none;
    background-color: #dccba8;
    gap: 10px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
#resultados .dog a img{
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
} 
.btnAdotarForm{
    background-color: #520603;
    padding: 10px 1rem;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    
}


.adotardiv{
    padding: 2rem 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000;
}
.adotardiv h2{
    font-size: 3rem;
    font-weight: bold;
    font-family: "Rubik", serif;
    color: #000;

}
.adotardiv p{
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

@media screen and (max-width: 468px) {
    #resultados {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 10px;
        width: 100%;
        align-items: center;
    
    }
    .dog-card div img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-fit: cover;
    }
    .adotardiv{
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #000;
        width: 100%;
    }
    .adotardiv p{
        width: 100%;
        font-size: 1.2rem;
        font-weight: bold;
        color: #000;
    }
    .adotardiv h2{
        color: #000;
    }
    select{
        font-size: 1.5rem;
        padding: 5px;
        outline: none;
        border: 2px solid green;
        border-radius: 5px;
        display: flex;
        width: 100%;
        gap: 5px;
        padding-bottom: 4px;
    }
    .selectdiv{
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
}
