body {
    font-family: 'Syne', sans-serif;
}
#cartNumber{
    color: red;
    position:absolute;
    top: 0;
    right: 0;
    font-size: 20sp;
    margin-right: 10px;
}
#myBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    height: 50px;
    width: 50px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: orange;
    color: white;
    cursor: pointer;
    border-radius: 25px;
    font-size: 18px;
}
#myBtn ::after{}

#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}
#shopping_cart{
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 99;
    box-shadow: gray;
}