* {
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

html, body {
  background-color: #eee;
  margin: 0;
  padding: 0;
  background-color: #a0d2eb;
}

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

.center {
  align-self: center;
}

.flow-right {
  display: flex;
  justify-content: space-around;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background-color: white;
  height: 90vh;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.myList {
  padding:10px;
}

.title, .controls, .button {
  flex: none;
}

.button {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  padding: 14px 40px;
  background-color:#5d97be;
  color:white;
  border-radius: 8px;
}

.dbutton {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  padding: 8px 16px;
  background-color:#5d97be;
  color:white;
  border-radius: 8px;
  float: right;
}

.todo-list {
  flex: 1 1 0;
  margin-top: 20px;
  padding: 20px;
  overflow-y: auto;
}

.todo-delete {
  margin: 10px;
}

.todo-checkbox {
  margin: 10px;
}

.todo-container {
  padding: 20px;
  border-bottom: 1px solid #333;
}

.todo-container:first-of-type {
  border-top: 1px solid #333;
}
