body {
    background-color: rgb(217, 195, 249);
  }

header  {
    font-size: 3vw;
    background-color: hsl(240, 96%, 20%);
    padding: 3vw;
    color: white;
    text-align: center;
    display:flex;
    justify-content: space-between;    
  }

  footer {
    font-size: 3vw;
    background-color: hsl(240, 96%, 20%);
    color: white;
    text-align: center;
    display:flex;
    justify-content:center

  }

  ul {
    list-style-type: none;
    margin: 20;
    padding: 20;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
  }
  
  li {
    float: left;
  }
  
  li a {    
    padding: 12px;
    color: hsl(73, 100%, 50%)
  }
  li a:hover {
    background-color: #111;
    color: white;
  }
  li a:active {
    background-color: #111;
    color: white;
  }

  
  h1 {
    color: rgb(9, 9, 59);
    margin-left: 20px;
  }

  .logojam {
    width: 100px;
    margin-left: 20px;
    background-color: hsl(240, 96%, 20%);
    border-radius: 10px;
    box-shadow: 5px 5px 20px hsl(73, 100%, 50%);
    border-color: rgb(127, 255, 153);
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-top-width: 1px;
    border-style: solid;
    padding: 10px;
    margin: 20px;
  }

  .recipe-list {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    padding-left: 2em;
    margin-top: 1em;
    font-size: 1.1em;
    font-family: 'Georgia', serif;
    color: #333;
  }
  
  .recipe-list li {
    margin-bottom: 0.5em;
  }
  
  .recipe-list a {
    color: hsl(240, 70%, 40%);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .recipe-list a:hover {
    color: hsl(240, 70%, 25%);
    text-decoration: underline;
  }
  