:root {
    --primary: #dc06e76e;
    --secondary: #b019f0d1;
    --title: #72048e;
  }

  nav {
    background: var(--primary);
    border-bottom: 10px solid var(--secondary);
  }

  nav p {
    float: left;
    margin:  0 0 0 0;
    font-weight: bold;
    color: #000000;
  }

  nav ul {
    float: right;
  }

  nav ul a {
    color: #000000;
  }

/* movie styles */
.movies {
  margin-top: 20px;
}
.card-panel.movie {
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90, 90, 90, 0.1);
  display: grid;
  grid-template-columns: 2fr 6fr 1fr;
  grid-template-areas: "image details delete";
  position: relative;
}
.movie img {
  grid-area: image;
  width:  75px;
  height:  75px;
}
.movie-details {
  grid-area: details;
  margin-top: 6px;
}
.movie-delete {
  grid-area: delete;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.movie-delete i {
  font-size: 18px;
}
.movie-title {
  font-weight: bold;
}
.movie-ingredients {
  font-size: 0.8em;
}

/* form-styles */
.add-btn {
  background: var(--title) !important;
}
input {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.side-form button {
  background: var(--title);
  box-shadow: 1px 1px 3px rgba(90, 90, 90, 0.2);
}
form .input-field {
  margin-top: 30px;
}

footer
{
	font-size:75%;
	font-style:italic;
	text-align:center;
	font-family: Georgia, "Times New Roman", serif;
	padding:2em;
	background-color:#FFFFFF;
}