.hot-coffee-1{
    margin-top: 20px;
    background-color: rgb(46, 46, 46);
    color: aliceblue;
    border-radius: 10px;
    border-color: aliceblue;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0 1px 5px rgba(49, 49, 49, 0.25);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-right: 30px;
    gap: 15px;
    height: 60px;
    cursor: pointer;
    width: 370px;
}

.image-coffee{
    width: 100px;
  
}

.menu-hot-coffee{
    display:flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 15px;
}
@media (max-width: 800px) {
    .menu-hot-coffee{
        flex-direction: column;
        align-items: center;
        width: 450px;
        
    }
}

.hot-coffee-1:hover{
    background-color: rgb(255, 180, 81);
    color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(49, 49, 49, 0.25);
    transform: translateY(-6px);
}

.hot-coffee-1:active{
    background-color: rgb(255, 255, 255);
    color: rgb(53, 53, 53);
}

.hot-coffee{
    margin-top: 50px;
}