*{
  margin:0;
  padding:0;
  color:white;
}
@media (max-width: 1000px) {
header{
  display:flex;
  align-items:center;
  justify-content:center;
  background:tomato;
  position:sticky;
  top:0px;
  padding:10px;
  font-weight:bold;
  font-size: 24px;
  font-family:sans-serif;
}
.nav-item{
  flex:0 1 200px;
}
.logo{
  display:flex;
  align-items:center;
  min-width:250px;
}

body{

  background: color #501005;
  height:2000px;
}

main{
  padding:25px;
  display:grid;
  gap:25px;
  grid-template-columns:1fr;
  grid-template-rows:repeat(9, 1fr);
  background-image: "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Hot_dog_with_mustard.png/1200px-Hot_dog_with_mustard.png";
  background-color:rgba(77, 29, 29, 0.5);
}
span{
  padding:2px;
  background:tomato;
}
img{
  float:left;
}
.hotdog{
  padding:30px 30px;
  background-color:rgba(196, 66, 66, 0.2);
    background-image: "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Hot_dog_with_mustard.png/1200px-Hot_dog_with_mustard.png";
}
}