html, body {
    max-width: 100%;
    overflow-x: hidden;
    background: linear-gradient(45deg, #2c75ff, #aa3300);
}
body{
    font-family: Poppins, sans-serif;
color: #333;
background-color: #bf3b13;
margin: 0;
text-align: center;
}
header, footer {
background: rgba(0, 0, 0, 0.5);
padding: 20px;
}
main {
margin: 40px auto;
width: 80%;
}
h2 {
color: white;
}
p {
font-size: 18px;
line-height: 1.5;
font-family: sans-serif;
font-weight: 500;
}
button {
background-color: rgb(0, 255, 0);
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
}
button:hover {
background-color: #6a00ff;
}
.fancy-text {
    font-family: cursive;
    color: #ff3300;
    text-shadow: 4px 4px
     8px rgba(0, 0, 0, 0.5);
}
.item-image{
    height: 280px;
    margin-top: auto;
}
.shop-item{
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin:40px;
    border-radius: 20px;
    width: 360px;
    height: 460px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.5);
}
.shop-item:hover {
    transform: scale(1.08);
}
.shop-item-description {
    margin-bottom: auto;
}
.card-text{
    font-weight: 600;
    font-family:sans-serif;
    color:white;
}
.card-title{
    color: #ff3300;
}
.shop-item-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    justify-content: space-evenly;
}
.add-to-cart-button{
    margin-top:15px;
}
