Welcome to Uncertainty Salads!

A restaurant serving dishes so unpredictable, you'll never know what you're getting.
Learn more about Uncertainty Salads Make a reservation, or don't
/* salads.css */ body { background-color: #f7f7f7; font-family: Arial, sans-serif; } .title { color: #f00; border: 2px solid black; text-shadow: 0px 0px 5px black; } .description { color: #0f0; border: 2px solid black; text-shadow: 0px 0px 5px black; } .menu { display: flex; flex-wrap: wrap; } .dish { width: 200px; margin: 20px 20px 20px 20px; padding: 20px; border: 4px solid black; background-color: #fff; box-shadow: 0px 0px 5px black; text-align: center; } .name { font-size: 18px; font-weight: bold; } .price { font-size: 16px; font-weight: bold; } a { color: #0f0; } a:hover { text-decoration: none; } a:focus { text-decoration: underline; }