* {
	margin: 0;
	padding: 0;
	color: #fff;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: black;
}

input {
	padding: 9px;
	border-radius: 10px;
	color: #fff;
	background-color: black;
	border: 1px solid #fff;
	outline: none;
}

input::placeholder {
	color: #fff;
}

input:focus {
	border: 1px solid black;
	outline: none;
	transition: .5s ease-out;
}

.bi-plus-lg{
	color: #fff;
}

button.add {
	background-color: black;
	border: 1px solid #fff;
	padding: 9px;
	border-radius: 7px;
	cursor: pointer;
}

#tasks {
	margin-top: 2rem;
	width: 30%;
}

.task {
	display: flex;
	justify-content: space-between;
	border: 1px solid #fff;
	border-radius: 10px;
	margin-bottom: 10px;
}

.task p {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 10px 0 10px 10px;
}

.task button {
	width: 30px;
	border-radius: 10px;
	border: 0;
	background-color: black;
	cursor: pointer;
}

.bi-x {
	border: 1px solid #fff;
	border-radius: 5px;
}