*{
	font-family: 'Times New Roman', Times, serif;
}
.first{
	color: aqua;
}
.main{
	height: 100vh;
	width: 100%;
	display: grid;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.box1{
	padding: 40px;
	border: 2px solid aqua;
	box-shadow: 0px 2px 20px black;
	border-radius: 20px;
}
.box1-next{
	color: black;
	background-color: aqua;
	pad: 5px;
	font-size: 1.5rem;
	border-radius: 10px;
}
.loader{
	height: 40px;
	width: 40px;
	border-radius: 50%;
	margin-left: 40%;
    display: none;
    border-top: 5px solid aqua;
	animation: spin 1s ease infinite;
}
#input{
	padding: 5px;
	border: 2px solid aqua;
	color: black;
	border-radius: 5px;
}
.inp-s{
	padding: 5px;
	border: 2px solid aqua;
	color: black;
	border-radius: 5px;
}
.inp-s:hover{
	box-shadow: 2px 2px 2px black;
}
.addtsk{
	border: 1.5px solid aqua;
	color: black;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 2px;
}
.addtsk:hover{
	background-color: aqua;
	box-shadow: 2px 2px 2px black;
	transition-duration: 0.5s;
}

@keyframes spin {
	100%{
		transform: rotate(360deg);
	}
}

.delete{
	border: 1.5px solid aqua;
	border-radius: 4px;
	color: black;
	justify-content: left;
	margin-left: 20px;
}
.delete:hover{
	background-color: rgb(248, 107, 107);
	transition-duration: 0.5s;
	border: 1.5px solid red;
}

th,td,tr{
	border: 1px solid black;
}
th{
	background-color: aqua;
}
td{
	background-color: aquamarine;
}
table{
	margin-left: 10%;
	margin-bottom: 20px;
}


/* for mobile */
@media(max-width:390px){
   
	.main-box{
	width: 100%;
	display: none;
	text-align: center;
	margin-top: 20px;
    }
	.box3{
       display: block;
	}
	.content1{
		border: 2px solid aqua;
		height: fit-content;
		margin: 20px;
		border-radius: 10px;
		box-shadow: 0px 2px 10px black;
	}
	.content2{
		border: 2px solid red;
		height: fit-content;
		margin: 20px;
		border-radius: 10px;
		box-shadow: 0px 2px 10px black;
	}
	.box4{
		padding: 10px;
	}
}

/* for desktop */
@media(min-width:390px){
   .main-box{
	width: 100%;
	display: none;
	text-align: center;
	margin-top: 40px;
    }
  .box3{
	display: flex;
	justify-content: space-evenly;
	margin: 20px;
  }

  .content1{
		border: 2px solid aqua;
		height: fit-content;
		padding: 20px;
		margin: 20px;
		border-radius: 10px;
		box-shadow: 0px 2px 10px black;
	}

	.content2{
		border: 2px solid red;
		height: fit-content;
		padding: 20px;
		margin: 20px;
		border-radius: 10px;
		box-shadow: 0px 2px 10px black;
	}
	table{
	   margin-left: 20%;
	}

}