@import url('https://fonts.googleapis.com/css2?family=Bigelow+Rules&family=Martian+Mono:wght@100;200;300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap');

/* GLOBAL */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

#main-container {
  width: 70%;
  margin: 40px auto 25px; 
  text-align: center;
}

#main-container h1 {
  margin-bottom: 20px;
}
#todos-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 800px;
  margin: auto;
  margin-top: 35px;
  color: white;
}
.todo {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: darkslategray;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 800px;
  margin-bottom: 20px;
}

.complete-button, .delete-button {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.complete-button {
  margin-left: -9px;
}

.delete-button {
  margin-right: -9px;
}

.delete-div, .complete-div{
  width: 33%;
}

.delete-div {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}


/* Utility */
.hidden {
  display: none;
}

.strike-through {
  text-decoration: line-through;
}