a.orderButton{
    visibility: hidden;
    background: #ff6961;
}
footer{
    background-color: white;
    padding-top: 20px;
}

@media screen and (max-width: 820px) {

footer{
    background-color: #101522;
}

a.orderButton{
    visibility: visible;
    color: white;
    height: 70px;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ff6961;
    white-space: nowrap;
    padding: 12px 30px;
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    border-top-right-radius: 1.5rem;
    border-top-left-radius: 1.5rem;
}

a.orderButton:hover{

    background: rgb(54, 194, 12);
    transition: all 0.5s ease-in-out;
    color: #fff;
    opacity: 0.9;
}
}