body {
    font-family: 'Quicksand', sans-serif;
    margin: 0px;
    font-size: 16pt;
    z-index: 1;
}

.desktopmenuItem {
    color: white;
}

.header-image {
    background-image: url('media/bg-top.jpg');  
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    height: 600px; 
    display: grid; 
    place-items: center;
    font-family: 'Amatic SC', cursive;
    margin-bottom: 25px;
}

@media only screen and (min-width: 1920px) {

    .header-image {
        background-image: url('media/bg-top.jpg'); 
        background-attachment: fixed; 
        background-position: center; 
        background-repeat: no-repeat;
        background-size: cover; 
        height: 600px; 
        display: grid; 
        place-items: center;
    }
    
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-heading {
    font-size: 48pt;
    color: white;
}

.sub-heading {
    font-size: 24pt;
}

.posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
}

.post {
    text-align: center;
    margin: 15px;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    width: 1fr;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    border: 2px solid rgb(42, 42, 42);
}

h1 {
    font-size: 48pt;
}

h2 {
    font-size: 34pt;
}

p {
    font-size: 24pt;
}

article {
    margin-left: 25px;
    margin-right: 25px;
    z-index: 10;
}

@media only screen and (min-width: 1280px) { 
    .ec-cart-widget {
        position: fixed;
        right: 25px;
    } 
}
  

.ec-cart-widget {
    display: grid;
    place-items: center;
}


.button {
    background-color: #ffcc00;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: x-large;
    text-decoration: none;
    text-align: center;
    color: black;
    font-family: 'Amatic SC', cursive;
}