
body{
  background-color: #25291C;
  color: #E3E7D3;
  
}

h1{
  font-family: "hoverunit", sans-serif;
font-weight: 400;
font-style: normal;
text-align: center;
}

#cocktail-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cocktail {
    margin: 10px;
    padding: 10px;
    border: 1px solid #E6E49F;
    border-radius: 5px;
    width: 200px;
  }
  
  .cocktail img {
    max-width: 100%;
    height: auto;
  }
  
  .cocktail h2 {
    font-size: 20px;
    margin: 5px 0;
    font-family: "hoverunit", sans-serif;
font-weight: 400;
font-style: normal;
  }
  
  .cocktail p {
    margin: 5px 0;
    font-family: "elza-text";
font-weight: 400;
font-style: normal;
  }
  