body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}


h1 {
    margin: 0;
    font-size: 2.5em;
}

.orderonline_container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    /* border: 1px solid #ccc; */
    /* border-radius: 5px; */
    background-color: #f9f9f9;

}

.orderonline_container h1{
    border-bottom: 5px solid #1a7e60;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #333;
    
}

.platform-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.platform-list li {
    margin: 40px auto;
    padding: 100px 100px;
    border-radius: 50px;
    transition: background 0.3s ease;
    color: white;  /* Ensure text is visible */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
    cursor: pointer;
    transition: transform 0.5s ease;

}
@media (max-width: 768px) {
    .platform-list li {
        padding: 50px 50px;
    }

}


.platform-list li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    font-size: 40px;
    text-align: center; 
    display: flex; 
    justify-content: center;
    align-items: center;
}

.platform-list li:hover {
    /* background: #e0e0e0; */
    transform: scale(1.1); 
}

.platform-list .ubereats {
    background: url('img/ubereats.jpeg') no-repeat center center;
    background-size: cover;
}


.platform-list .grubhub {
    background: url('img/grubhub.jpeg') no-repeat center center;
    background-size: cover;
}
.platform-list .beyondmenu {
    background: url('img/beyondmenu.jpeg') no-repeat center center;
    background-size: cover;
}