*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(40, 40, 40);
    background-image: url('../../resources/images/homepage/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position:center;
    background-size: cover;
    background-blend-mode:luminosity;
}
nav .headerlogo{
    height:90px;
   
}
.home_infocard{
   padding: 0;
   margin:5px;
}
.home_infocard img{
    margin: auto;
    width:90%;
    border-radius: 30px;
    background-color: rgb(15, 70, 141);

}
.cardText{
    margin: auto;
    width:100%;
    height: 100px;
    font-size:1.4rem;
    background-color: rgba(0, 0, 0, 0.79);
}
.fixed-cart-button {
    width:4rem;
    position: fixed; /* Fixed positioning */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #ffffff; /* Button background color */
    color: #333; /* Text color */
    padding: 15px; /* Button padding */
    border-radius: 50%; /* Make it circular */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    z-index: 1000; /* Ensure it stays on top of other elements */
    display: flex;
    align-items: center;
    justify-content: center;
}