@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Staatliches&family=Varela+Round&display=swap');

::-webkit-scrollbar {
    display: none; /* Oculta la barra de scroll sin deshabilitarla */
}

body {
    font-family: 'Varela Round', sans-serif;
    overflow-x: hidden;

    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    width: 100%;
    height: 16vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    margin: 0px;
    padding: 0px;
    width: 100%;
}

p {
    margin: 0px;
    width: 95%;
}

h5 {
    margin: 10px;
    font-size: 1rem;
}

/* Boton carta */

button {
    margin: 20px;
    padding: 15px;
    font-family: 'Varela Round', sans-serif;
}

.button-card {
    margin: 15px;
    padding: 15px;
    font-size: 1.2rem;
    text-decoration: none;
    border-style: none;
    border-radius: 35px;

    color: white;
    background-color: #ffbf00;
    transition: background-color 1s;
}

.button-card:hover {
    background-color: #dd2d4a;
}

.link-adopt {
    font-size: 1.1rem;
    font-weight: 550;
    text-decoration: none;
    color: white;
}

/* Listado de cartas */

.pets-cards-section {
    width: 100%;
    height: 100vh;
    left: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    overflow: auto;
}

.pets-list {
    width: 100%;
    height: 100%;
    display: inline-block;
    flex-direction: row;
    position: relative;
}

.listing-container {
    display: inline-block;
}

.listing {
    width: 300px;
    height: 450px;

    text-decoration: none;
    display: inline-block;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;

    border: 2px solid rgb(255, 130, 172); /*rgb(156, 156, 156)*/
    border-radius: 5%;
    background-color: rgb(255, 235, 168);
}

.pet-photo {
    width: 100%;
    height: 50%;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}