/*body styles*/
body {
  background-image: url('./images/purple.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #3c5d88;
  color: #fff;
}

/*container styles*/
div.container {
  display:flex;
  flex-direction: column;
  align-items: center;
 }

 .box {
  background-repeat: no-repeat;
  background-color: rgba(3, 13, 5, 0.5);/*if image doesn't load*/
  padding: 1.5rem;
  margin-top: 60px;
  margin-left: 40px;
  border-radius: 30px;
 }

 /*heading styles*/
h1 {
  text-align: center;
  font-size: 3rem;
  padding-top: 1.2rem;
}

/*add input styles*/
#add-task {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  margin: 0 auto;
}

/*paragraph styles*/
p {
  font-size: 1.8rem;
  color: #fff;
  /*background-color: rgb(255, 255, 255, 0.7);
  border-radius: 40px;*/
  padding: 5px 20px;
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/*row styles*/
div.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

/*button styles*/
button.delete {
  background-color: rgb(203, 194, 194);
  height: 2rem;
}

button.add {
  background: #94ef2c;
}

/*checkbox styles*/
input.mark-complete {
  width: 30px;
  height: 30px;
}
