header 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white; 
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.67);
}

header img 
{
    height: 75px; 
    width: auto;
}

nav ul 
{
    list-style: none;
    display: flex;
    gap: 67px;
    margin: 0;
    padding: 0;
}

nav a 
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}

nav a:hover 
{
    text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main 
{
  padding-bottom: 60px; 
}

.lunch-spot 
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.lunch-image img 
{
  width: 500px;
  border-radius: 12px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.67);
  border: 3px solid #b1003a;
}

.lunch-info 
{
  max-width: 550px;
  text-align: left;
  border: 3px solid #b1003a;
  border-radius: 12px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.67);
  padding: 20px;
  background-color: #fff;
}

footer 
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 2px solid #b1003a;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}