@font-face {
  font-family: 'MyCustomFont';
  src: url('/fonts/Outfit/Outfit-VariableFont_wght.ttf') format('truetype');
}

body {
  background-color:hsl(20,50%, 98%) ;
}

h1 {
  /*margin-right: 20px;*/
  text-align: center;
  font-family: 'MyCustomFont';
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
}

h2 {
  text-align: center;
  font-family: 'MyCustomFont';
  font-size: 1.15rem;
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
  color: hsl(14,86%,50%);
  border-bottom: 1.2px solid hsl(14,65%,9%);
  border-width: 50%;
}

h3 {
  color: hsl(14,65%,9%);
  font-family: 'MyCustomFont';
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
}

.container {
  background-color: hsl(20,50%, 98%);
  border-radius: 12px;
  display: flex;
  /*gap: 10xp;*/
  flex-direction: column;
  align-items: center;
}

.container section {
  max-width: 90%;
  margin: auto;
  margin-top: 40px;
  background-color: white;
  border-radius: 15px;
  /*box-shadow: 3px 6px 2px 10px hsl(12,20%,44%);*/
  /*margin: 30px 50px 0 20px;*/
}

.ingredients {
  font-family: 'MyCustomFont';
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: hsl(12,20%,44%);
}

section .price {
  font-family: 'MyCustomFont';
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: hsl(14,86%,50%);
}

.container .kids-corner-section {
  min-width: 90%;
}

.container .sides {
  min-width: 90%;
}

.container .grabbers {
  min-width: 90%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  to {
    transform: rotate(360deg); /* End at 360 degrees */
  }
}

.logo {
  max-width: 70px;
  min-height: 70px;
  background-color:hsl(20,50%, 98%) ;
}

.logo img {
  max-width: 100%;
  object-fit: cover;
  background-color:hsl(20,50%, 98%) ;
  animation: rotate 8s linear infinite;
}

.menu-container {
  display: flex;
  justify-content: space-between;
}

.menu {
  display: flex;
  justify-content: flex-end;
}

.menu .list {
  display: flex;
  list-style: none;
}

.list a {
  text-decoration: none;
  margin-left: 12px;
  /*border-right: 2px solid hsl(14,65%,9%);
  padding-right: 10px;*/
  font-family: 'MyCustomFont';
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  color: hsl(14,65%,9%);
}

.list .food-link a{
  border-right: 2px solid black;
  padding-right: 10px;
}
