#banner{
    width:70%;
    height:600px;
    background-color: #32200c;
    color:white;
    margin:auto;
}

#bannerImage{
    width:100%;
    height:100%;
}


#menu{
    display:flex;
    flex-direction: column;
    /* background-color: whitesmoke; */
    width:100%;
    padding:10px;

    /* 1. Set the thickness of the border */
    border: 100px solid transparent; 

    /* 2. Link your image */
    border-image-source: url('../images/frame2.png');

    /* 3. Slice the image (usually a percentage or pixel value) */
    /* This tells CSS how to divide the image into 9 regions */
    border-image-slice: 25% 25% 25% 25%; 

    /* 4. Choose how the edges behave (stretch, repeat, or round) */
    border-image-repeat: stretch;
}

#options{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    gap:30px;
    padding:0;
    margin-top:50px;
}
.option{
    display:flex;
    flex-direction: column;
    width:700px;
    /* background-color: blue; */
    padding:10px;
    margin:0;
    background-image: url('../images/texture2.png');
    background-repeat: none;
    background-size: cover;
    
}

.option:hover{
    cursor: pointer;
   
    outline:#32200c solid 5px;
}
 .option:hover .optionsTop{
    transform:scale(1.1);
 }

  .option:hover .optionsBottom{
    transform:scale(1.1);
 }
 

.optionsTop{
    display:flex;
    justify-content: space-around;
    align-items: center;
    /* background-color: red; */
    width:100%;
    transition:transform 0.1s ease-in-out;
}

.optionCheckbox{
    z-index: 2;
    cursor:pointer;
    width:50px;
    height:50px;
}
.optionsBottom{
    width:100%;
    transition:transform 0.2s ease-in-out;
}

.optionsBottom p{
    text-align: center;
}
.itemImage{
    width: 100px;
    height: 100px;
}

.itemName,.itemPrice{
    color:#32200c;
    font-weight: bold;
    font-size: 30px;
}

.itemStatus{
    color:green;
    font-weight: bold;
    font-size: 20px;
}

#btnCart{
    background-color: green;
    color:white;
    outline:none;
    border:none;
    height: 50px;
    width: 200px;
    font-size: 25px;
    cursor:pointer;
    margin-left:45%;
    padding: 10px;
    
}
#cartLink{
    text-decoration: none;
    text-align: center;
}

#btnCart:hover{
    background-color: rgb(5, 45, 5);
}