body{
  margin: 0px;
  padding: 10px;
}

.logo {
  font-family: 'Mulish',sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: flex-left;
  border-left: 40px;
  padding: 30px;
}


.Header {
 display: flex;
 align-items: center;
 background-image: radial-gradient(circle farthest-corner at 0 0,#611952,#dd529b);
 width: 100%;
}


ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
}

a{
  text-decoration: none;
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.Header .menu > .menu-item{
  display: inline-block;
  padding-left: 30px;
  padding-bottom: 10px;
  position: relative;
}

.Header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.Header .menu > .menu-item:hover > a{
  color: #dd529b;
}

.Header .menu > .menu-item > .sub-menu{
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  width: 150px;
  position: absolute;
  /* padding: 10px; */
  left: 0;
  top: 100%;
  background-color: #611952;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 414px){
.Header .menu > .menu-item:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
}
}

.Header .menu > .menu-item > .sub-menu > .menu-item{
  display: block;
}

.Header .menu > .menu-item > .sub-menu > .menu-item > a{
  display: block;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}



.tagline{
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: radial-gradient(circle farthest-corner at 0 0,#611952,#dd529b);
  width:100%;
}

.tag-text{
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  font-family: 'Mulish', sans-serif;
  text-align: center;
  align-items: center;
  color: white;
  font-size: 20px;
  padding: 10px;
}

.Recepies-div{
  display: flex;
  flex-direction: column;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  font-family: 'Mulish', sans-serif;
  padding-top: 30px;
  padding-bottom: 30px;
}


.home-container{
  background-image: url("images/hero image.jpg");
  object-fit: fill;
  background-size: cover;
  height: 700px;

}

.Meals {
  background-color: white;
  /* display: grid; */
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  /* grid-template-columns: 1fr 1fr 1fr; */
  gap: 185px;
  /* padding-top: 50px; */
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  font-family: 'Mulish', sans-serif;
}

.subtext {
  background-color: #efefef;
  color: black;
  width: 278px;
  border: 1px solid #DCDCDC;
  text-align: center;
  padding: 10px;
  align-items: center;
}


.Breakfast-top-part{
  background-image: url("images/breakfast.jpg");
  align-items: center;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  justify-content: center;
  text-align: center;
}

.Lunch-top-part{
  background-image: url("images/lunch.jpg");
  align-items: center;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  justify-content: center;
  text-align: center;
}

.Dinner-top-part{
  background-image: url("images/dinner.jpg");
  align-items: center;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  justify-content: center;
  text-align: center;
}

.Snacks-top-part{
  background-image: url("images/snacks.jpg");
  align-items: center;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  justify-content: center;
  text-align: center;
}

.Dessert-top-part{
  background-image: url("images/desserts.jpg");
  align-items: center;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  justify-content: center;
  text-align: center;
}

.Special-Occasions-top-part{
  background-image: url("images/special-occasions.jpg");
  align-items: center;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  justify-content: center;
  text-align: center;
}

.footer {
 display: flex;
 justify-content: flex-right;
 align-items: center;
 background-image: radial-gradient(circle farthest-corner at 0 0,#611952,#dd529b);
 width: 100%
}

.StartUseDo {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  color: white;
  padding-left: 450px;
}

/* STYLE FOR PROGRESS PAGE IN JS */
body {
  font-family: 'Mulish', sans-serif;
  text-align: center;
}

/* center the container and imply margins */
.container {
  /* display: flex; */
  padding: 30px;
  max-width: 800px;
  margin: auto;
}

/* make the div with the id lists into a flex container */
.lists {
  display: flex;
  justify-content: space-around;
}

/* Modernize buttons and input */

button {
  margin-bottom: 1em;
  padding: 1em 3em;
  border-radius: .5em;
}

button:hover{
background-color: #dd529b
}

input {
  width: 300px;
  padding: 1em;
}

/* make list containers flex */
.lists div {
  display: flex;
  flex-direction: column;
  flex-basis: 40%;
  margin: 1em;
}

.lists ul {
  list-style-type: none;
  display: inline;
}

/* style list items, common styles */
.to-do-item, .done-item {
  margin: .5em;
  border-radius: 4%;
  box-shadow: 2px 2px 4px gray;
  padding: 5px 8px;
}

/* Style list item specific to to-do-item */
.to-do-item {
  background: #dd529b;
  cursor: pointer;
  position: relative;
}

.to-do-item:hover::after {
  content: "\2713";
  width: 20px;
  height: 20px;
  background: #66FCF1;
  position: absolute;
  right: 0;
  top: 0;
  border-top-right-radius: 4%;
}
