body {
  background: rgb(255,214,255);
  background: linear-gradient(90deg, rgba(255,214,255,1) 0%, rgba(231,198,255,1) 50%, rgba(200,182,255,1) 100%);
  font-family: "Edu AU VIC WA NT Pre", cursive;
}

div,a, button {
  font-family: "Edu AU VIC WA NT Pre", cursive;
}


.head-container {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
}

a, div, button {
  font-family: Arial, Helvetica, sans-serif;
}

.opening-con {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.img-img {
  width: 300px;
}

.img-details {
  width: 500px;
  font-size: small;
  text-align: center;
}

.opening-hr-con {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #003049;
  width: 1000px;
}

.navigation-link {
  background-color: #003049;
  padding: 5px;
  margin: 2px;
}

.navigation-link:hover {
  cursor: pointer;
  opacity: 0.5;
}

.navigation-main-con {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

a {
  text-decoration: none;
  color: #bde0fe;
}

/*  Todo List */

.todolist-space {
  margin-bottom: 30px;
  margin-top: 10px;
}

.todo-grid, .todo-input-grid {
  display: grid;
  grid-template-columns: 200px 150px 100px;
  column-gap: 10px;
  row-gap: 10px;

  align-items: center;
}

.todo-input-grid {
  margin-bottom: 10px;
  align-items: stretch;
}

.name-input, .due-date-input {
  font-size: 15px;
  padding: 6px;

}

.add-todo-button, .start-finish , .js-loading, .js-finished {
  background-color: green;
  color: white;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.delete-todo-button {
  background-color: darkred;
  color: white;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 10px;
}

.start-finish {
  background-color: darkred;
}

.start-finish, .js-loading, .js-finished {
  padding: 10px 15px;
}

.js-loading {
  background-color: yellow;
  color: black;
}

.js-finished {
  background-color: green;
}

.space-please {
  margin-top: 20px;
  text-align: center;
}

.added-message {
  margin-top: 10px;
}

.add-to-cart {
  padding: 10px 15px;
  border: none;
  background-color: white;
  cursor: pointer;
}

.add-to-cart:active {
  background-color: black;
  color: white;
}
