@import url("https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000 ;
  font-family: "Barlow Light", sans-serif;
  font-size: 1rem;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 0.5rem;
  text-align: center;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

ul {
  list-style: none;
  display: flex;
  color: white;
}

li a{
  margin-right: 1rem;
  color: #7FA50C;
  text-decoration: none;
  font-family: 'Barlow Light', sans-serif;
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1 {
  color: #fff;
  font-size: 100%;
  font-weight: 600;
  font-family: 'Barlow Medium', sans-serif;
  text-transform: uppercase;
}

h1 a{
  text-decoration: none;
  color: #fff;
}

h1 a :hover{
  text-decoration: none;
  color: #fff;
}
h2 {
  color: #fff;
  font-size: 100%;
  font-weight: 500;
  font-family: 'Barlow Medium', sans-serif;
  text-transform: uppercase;
}

.Ingredients{
color: #8CAA0E;
font-weight: 700;
text-transform: capitalize;
font-size: 1.1rem;
margin-top: 0.5rem;
font-family: "Barlow Light";
}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem 0;
  /*border-color: white;*/
  padding-bottom: 100px;

}
.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: auto;
  height: 17rem;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
  /*border: #ffffff;*/
}

.card--avatar {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.card--title {
  color: #222;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-family: "Barlow Light";
}

.card--price {
  color: #8CAA0E;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-family: "Barlow Light";
  padding: 2px;
}

.card--link {
  text-decoration: none;
  background: #7FA50C;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-family: 'Barlow Light', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer {
  clear:both;
  height: 60px;
  background-color: #683A02;
  margin-top: 30px;
  color: #fff;
  position:fixed;
  bottom: 0;
  left:0;
  display: block;
  padding: 20px;
  width: 100%;
  font-family: 'Barlow Light', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
}