.heroimagecontainer {
    background-image: url(../images/order-hero-desktop.jpg?v=1);
}
@media (max-width: 1000px) {
    .heroimagecontainer {
        background-image: url(../images/order-hero-mobile.jpg?v=1);
    }
}

#ordercontainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
}
.productheader {
    background-color: var(--color-teal);
    text-align: center;
}
.productheader {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    line-height: 50px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.productdescription {
    text-align: center;
}
.productdescription p {
    line-height: 25px;
}
.productdescription img {
    width: 150px;
}
.productimages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
}
.productimage {
    position: relative;
}
.productimages .productimage img {
    width: 100%;
}
.productcontainer:hover .productlink {
    cursor: pointer;
}
.productcontainer:hover .productheader {
    background-color: var(--color-pink);
    color: var(--color-teal);
}

#cowcontainer {
    height: 0;
    position: relative;
    overflow: hidden;
}

#cowcontainer #cowbutton {
    width: 200px;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    z-index:5;
    transition: top 1s;
}
@media (min-width: 1001px) {
    #cowcontainer {
        height: 75px;
    }
    #cowcontainer.hover #cowbutton {
        top: 0;
        transition: top 1s;
    }
    #partyoptions {
        margin-top: 75px;
    }
    #ordercontainer {
        margin-top: -30px;
    }
}
@media (max-width: 1001px) {
    #ordercontainer {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 30px;
    }
    .productheader {
        font-size: 15px;
        line-height: 40px;
    }
    .productdescription p {
        line-height: 21px;
    }
    .productdescription img {
        width: 125px;
    }
}