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


a {
    text-decoration: none;

}

.header-pets {
    background-color: rgb(23, 19, 58);
    color: rgb(255, 255, 255);
    align-items: center;
    padding: 30px;
    justify-content: space-between;
    display: flex;
    border-color: gray;
    border-width: 2px;
}

.nav-pets a {
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    border-radius: 20px;
    transition: 0.3s ease;
    background-color: rgb(71, 0, 118);
    display: flex;
}
.nav-pets a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(71, 0, 118);
}

.main-pets {
    background-color: rgb(23, 19, 58);
    color: white;
    padding: 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.img-pets {
    display: grid;
    /* Activamos el modo rejilla */

    /* Esto crea 3 columnas de igual tamaño (1fr) */
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
    /* Espacio entre las tarjetas */
    padding: 20px;
    justify-content: center;
    align-content: center;
}

#div-1,
#div-2,
#div-3,
#div-4,
#div-5,
#div-6 {
    font-size: 1rem;
    padding: 20px;
    margin: 15px;
    border-radius: 15px;
    background-color: rgba(241, 241, 241, 0.055);
    box-sizing: border-box;
    color: rgb(111, 106, 116);
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: center;
}

.img-1,
.img-2,
.img-3,
.img-4,
.img-5,
.img-6 {
    display: flex;
    padding: 20px;
    border-radius: 40px;
    justify-content: center;
    max-width: 100%;

}

#footer-pets {
    background-color: rgb(65, 23, 98);
    color: rgba(255, 255, 255, 0.347);
    padding: 20px;
    text-align: center;
}