body {
    font-family: Delicious SmallCaps, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
}
nav a {
    color: #fff;
    margin: 0 1em;
    text-decoration: none;
}

.gallery-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 100px;
    background-color: black;
}

.gallery img {
    height: 300px;
    margin-right: 30px;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.5);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 50px;
}

.left-btn {
    left: 10px;
    z-index: 9999;
}

.right-btn {
    right: 10px;
    z-index: 9999;
}

ul {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove default padding */
}

li {
    margin: 0; /* Optional: Remove any default margins */
}

.apps {
    padding: 10em;
    text-align: center;
}

.welcome {
    text-align: center;
    margin-bottom: 0px; /* Adjust the margin as needed */
}


.hours {
    margin-top: -180px;
    text-align: center;
    margin-bottom: 0px; /* Adjust the margin as needed */
}

.dim-sum {
    margin-top: -100px;
    text-align: center;
    margin-bottom: -180px; /* Adjust the margin as needed */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}

.button-order-online {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #861001; /* Set background color */
    color: white; /* Set text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Add rounded corners */
    border: none; /* Remove border */
    cursor: pointer; /* Change cursor on hover */
}

.button-apple {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #A2AAAD; /* Set background color */
    color: white; /* Set text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Add rounded corners */
    border: none; /* Remove border */
    cursor: pointer; /* Change cursor on hover */
}

.button-android {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #3DDC84; /* Set background color */
    color: black; /* Set text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Add rounded corners */
    border: none; /* Remove border */
    cursor: pointer; /* Change cursor on hover */
}

.button:hover {
    background-color: #0056b3; /* Change background color on hover */
}

.hero {
    margin-top: -80px; /* Adjust the margin as needed */
}