body {
  background-color: rgb(58, 58, 58);
  border: 5px solid black;
  color: lightgrey;
}

header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  text-align: center;
  border: 1px solid lightgrey;
  margin: 10px;
  padding: 20px;
  font-size: xx-large;
}

.title {
  font-family: "DynaPuff", cursive;
  font-size: 60px;
}

.slogan {
  font-family: "Permanent Marker", cursive;
  font-size: 40px;
}

.search {
  color: lightslategrey;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.searchP {
  font-size: 20px;
}

.video {
  height: 480px;
  width: 854px;
}

.suggestionTitle {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

input,
button {
  margin-bottom: 20px;
  border: 1px solid black;
}

button {
  border-radius: 15px;
  padding: 10px;
  color: white;
  background: #6394ed;
  transition: 0.1s ease-in-out;
}

button:hover {
  background-color: #2068f0;
}

input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 16px;
  color: white;
  margin: 0 0 8px 0;
  max-width: 90%;
}

#recipe-list {
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
  color: lightgrey;
}

#recipe-body {
  color: lightgrey;
  padding: 35px;
  margin-top: 5px;
}

#recipe-body ul {
  color: white;
  padding: 5px;
}

li {
  display: contents;
  justify-content: center;
}

.link {
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 10px;
  border-radius: 15px;
  transition: 0.1s ease-in-out;
  background-color: #6394ed;
}

.link:hover {
  background-color: #2068f0;
}

footer {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  color: white;
}

.errorModalShow {
  display: block;
}

.errorModalHide {
  display: none;
}
