
li{
    list-style: none;
    border: 2px dotted red;
}
.head-menu{
display: flex;
gap:20px;
    background-color: rgb(83, 194, 194);


}

.head-menu .link {
    display:block;
    text-decoration: none;
    color: white;
  border-radius: 3px;
  background-color: teal;
 
  font-family: sans-serif;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.container{
    display: flex;
    gap:5px;
    max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  background-color: rgb(136, 86, 216);
  border: 2px dotted green;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: #212121;
  font-size: 14px;
  background-color: #fff;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
  object-fit: fill;
}