.flex-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
}

body {
    font-family: Cinzel Decorative, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #010101;
}

header {
    background-image: black;/*linear-gradient(to right,  #fad17f 25%, #fde967 100%);*/
    color: #fcdb77;
    text-align: center;
    padding: 10px;
}

#logo {
    width: 225px; /* Adjust the logo size as needed */
    height: 120px;
    margin-right: 20px;
    float: left;
    align-content: center;
}

.hdr{
   position: relative;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product {
    background: linear-gradient(to left, #fcdb77 25%);
    border: 0.5px solid #fcdb77;
    border-radius: 15px;
    margin: 10px;
    padding: 10px;
    text-align: center;
    width: 20%;
}

.product img {
    max-width: 50%;
}

.product h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #fcdb77;
}
.product p{
    color: #fcdb77;
}

.price {
    font-weight: bold;
    
    color: #fffefe;
    font-size: 1.2rem;
}
button {
    background-color: #fcdb77;
    border-radius: 15px;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}


footer {
    background-image: black;/*linear-gradient(to right, #fad17f 25%, #fde967 100%);*/
    color: rgb(31, 31, 31);
    text-align: center;
    padding: 10px;
    margin-top: auto;
}

footer p{
    color: #fcdb77;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #f1f1ee;
    color: white;
}

ul.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

li.menu-item {
    float: left;
}

li.menu-item a {
    display: block;
    color: rgb(2, 2, 2);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    margin: 0 25px
}

li.menu-item a:hover {
    background-color: #f5eb77;
}

/* Media query to show the hamburger menu on smaller screens */
@media screen and (max-width: 768px) {
  
    .product h2 {
        font-size: 1rem;
        margin: 10px 0;
        color: #fcdb77;
    }
    .product p{
        color: #fcdb77;
        font-size: 0.5rem;
    }

    #logo {
        width: 100px; /* Adjust the logo size as needed */
        height: 100px;
        margin-right: 20px;
        float: left;
        align-content: center;
    }

    button {
        background-color: #fcdb77;
        border-radius: 15px;
        color: white;
        padding: 10px 20px;
        font-size: 0.5rem;
        cursor: pointer;
        margin-top: 10px;
    }

    header h1{
        font-size: 1.5rem;
    }
}