@import url(variables.css);
.breakfast-section {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-radius: 7px;
  font-family: "Roboto", sans-serif;
}
button {
  background: var(--primary-color);
  font-family: "Roboto", sans-serif;
  padding: 4px 14px;
  border-radius: 5px;
  transition: background-color 0.5s;
  border: 0;
  cursor: pointer;
}
button:hover {
  background-color: white;
  transform: translateY(-3px);
}
.recipe-card {
  width: 200px;
  height: 230px;
  background: var(--card-bg);
  padding: 10px;
  border-radius: 7px;
  margin-top: 30px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  transition: background-color 0.5s;
  
}
.recipe-card:hover{
    transform: translateY(-8px);
    background-color: var(--primary-color);
}
.recipe-card img {
  width: 100%;
  height: 120px;
  border-radius: 7px;
}
.lunch-section {
  display: flex;
  justify-content: space-evenly;
}
.dinner-section{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 5px;
    justify-items: center;
    align-items: center;

}
@media (max-width: 768px) {
  .Popular-section {
    grid-template-columns: 1fr;
  }

  .recipe-card {
    margin: 0 auto;
    width: 90%;
  }

  .recipe-card button {
    width: 100%;
  }
}