/* =========================
   Base Styles (default)
============================ */
#kittens-main-container {
    background-color: white;
    margin-top: 10vh;
    min-height: 90vh;
    padding-bottom: 5vh;
    width: 100vw;
    font-family: "Cinzel Decorative", serif;;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.kitten-card {
    border-radius: 8px;
    margin-top: 2rem;
    margin-left: 10vw;
    margin-right: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.kitten-card-image {
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    opacity: 0.85;
    border: 0.75px solid white;
}

.kitten-card-image:hover {
    transition: all 0.15s ease;
    opacity: 1.0;
}

.kitten-card-sub-div {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}

.kitten-card-name {
    font-size: 20px;
}

.kitten-card-price {
    font-size: 14px;
    opacity: 0.7;
}

.kitten-card-description {
    font-size: 10px;
}

.kitten-link {
    font-size: 10px;
    background-color: rgb(25, 25, 25);
    color: rgb(255, 255, 255);
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.kitten-link:hover {
    background-color: rgba(0, 0, 0, 0.408);
    transition: all 0.15s ease;
}

/* =========================
   Smallest phones (≥320px)
============================ */
@media (min-width: 320px) {
}

/* =========================
   Small devices (≥480px)
============================ */
@media (min-width: 480px) {
}

/* =========================
   Tablets (≥768px)
============================ */
@media (min-width: 768px) {
    #kittens-main-container {
        background-color: white;
        margin-top: 10vh;
        min-height: 90vh;
        padding-bottom: 5vh;
        width: 100vw;
        font-family: "Cinzel Decorative", serif;;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow-y: auto;
    }

    .kitten-card {
        max-width: 26vw;
    }

    .kitten-card-name {
        font-size: 20px;
    }

    .kitten-card-description {
        font-size: 11px;
    }

    .kitten-link {
        font-size: 12px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 5px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* =========================
   Small desktops (≥992px)
============================ */
@media (min-width: 992px) {
}

/* =========================
   Large desktops (≥1200px)
============================ */
@media (min-width: 1200px) {
    .kitten-card {
        max-width: 24vw;
    }

    .kitten-card-name {
        font-size: 24px;
    }

    .kitten-card-description {
        font-size: 14px;
    }
}