body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

.restaurants {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 100px;
}

.r-text {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.restaurant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.restaurant {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 300px;
}

.restaurant:hover {
    transform: scale(1.05);
}

.restaurant img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.r-content {
    padding: 15px;
}

.r-content h2 {
    font-size: 1.5rem;
    color: #2980b9;
    margin: 0;
}

.r-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 10px;
}

a {
    text-decoration: none;
}

h1 {
    text-align: center;
    color: #e74c3c;
    font-size: 2rem;
}
