@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

:root {
	--dark: #374151;
	--darker: #1f2937;
	--darkest: #111827;
	--gray: #6b7280;
	--light: #eee;
	--pink: #ec4899;
	--purple: #8b5cf6;
}

* {
	box-sizing: border-box;
	margin: 0;
	font-family: "Inter", sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: var(--dark);
	color: #fff;
}

header {
	padding: 2rem 1rem;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

header h1 {
	font-size: 2.5rem;
	font-weight: 300;
	color: var(--gray);
	margin-bottom: 1rem;
}

#new-task-form {
	display: flex;
}

input,
button {
	appearance: none;
	border: none;
	outline: none;
	background: none;
}

#new-task-input {
	flex: 1 1 0%;
	background-color: var(--darkest);
	padding: 1rem;
	border-radius: 1rem;
	margin-right: 1rem;
	color: var(--light);
	font-size: 1.5rem;
}

#new-task-input::placeholder {
	color: var(--gray);
}

#new-task-submit {
	color: var(--pink);
	font-size: 1.25rem;
	font-weight: 700;
	background-image: linear-gradient(to right, var(--pink), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	cursor: pointer;
	transition: 0.4s;
}

#new-task-submit:hover {
	opacity: 0.8;
}

#new-task-submit:active {
	opacity: 0.6;
}

main {
	flex: 1 1 0%;
	padding: 2rem 1rem;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

.task-list {
	padding: 1rem;
}

.task-list h2 {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--gray);
	margin-bottom: 1rem;
}

#tasks .task {
	display: flex;
	justify-content: space-between;
	background-color: var(--darkest);
	padding: 1rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

#tasks .task .content {
	flex: 1 1 0%;
}

.todo-item>.checkbox {
	margin-right: 20px;
	position: relative;
	width: 0;
	transition: all 0.2s ease-in-out;
}

.todo-item>.checkbox::before {
	content: "";
	position: absolute;
	transform: translate(-50%, -50%);
	left: 55%;
	top: 55%;
	width: 10px;
	height: 10px;
	border-radius: 50px;
	border: 2px solid rgb(23, 124, 255);
	cursor: pointer;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	margin-left: 5px;
}

.content {
	display: block;
	font-family: "Anonymous Pro", sans-serif;
	position: relative;
	color: rgba(255, 255, 255, 0.75);
	font-family: "Anonymous Pro", monospace;
}

.typewrite {
	font-size: 180%;
	border-right: 2px solid rgba(255, 255, 255, 0.75);
	font-family: "Anonymous Pro", sans-serif;
	line-height: 1.15;
}

.anim-typewrite {
	animation: blinkTextCursor 500ms infinite normal;
}

@keyframes blinkTextCursor {
	from {
		border-right-color: rgba(255, 255, 255, 0.75);
	}

	to {
		border-right-color: transparent;
	}
}

.contentt {
	display: block;
	float: left;
	font-family: "Anonymous Pro", sans-serif;
	color: rgba(255, 255, 255, 0.75);
	font-family: "Anonymous Pro", monospace;
}

.typewritee {
	font-size: 180%;
	border-right: 2px solid rgba(255, 255, 255, 0.75);
	font-family: "Anonymous Pro", sans-serif;
	line-height: 1.15;
}

.anim-typewritee {
	animation: blinkTextCursor 500ms infinite normal;
}

@keyframes blinkTextCursor {
	from {
		border-right-color: rgba(255, 255, 255, 0.75);
	}

	to {
		border-right-color: transparent;
	}
}

.todo-item.checked {
	color: rgb(23, 124, 255);
	text-decoration: line-through;
	opacity: 0.8;
}

.todo-item.checked>.checkbox::before {
	border: 5px solid rgb(170, 207, 255);
	background-color: rgb(23, 124, 255);
	transition: all 0.2s ease-in-out;
}

/* GLOBAL STYLES */

/* DEMO-SPECIFIC STYLES */
#tasks .task .content .text {
	color: var(--light);
	font-size: 1.125rem;
	width: 100%;
	display: block;
	transition: 0.4s;
}

#tasks .task .content .text:not(:read-only) {
	color: var(--pink);
}

#tasks .task .actions {
	display: flex;
	margin: 0 -0.5rem;
}

.task .actions button {
	cursor: pointer;
	margin: 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: 0.4s;
}

#tasks {
	position: absolute;
}

#tasksheader {
	padding: 10px;
	cursor: move;
	z-index: 10;
	position: absolute;
	background-color: var(--purple);
	color: #fff;
}
<<<<<<< HEAD
=======
.create-todo .options label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #FFF;
	padding: 1.5rem;
	box-shadow: var(--shadow);
	border-radius: 0.5rem;
	cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
	display: none;
}

.bubble {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	border: 2px solid var(--business);
	box-shadow: var(--business-glow);
}

.bubble.personal {
	border-color: var(--personal);
	box-shadow: var(--personal-glow);
}

.bubble::after {
	content: '';
	display: block;
	opacity: 0;
	width: 0px;
	height: 0px;
	background-color: var(--business);
	box-shadow: var(--business-glow);
	border-radius: 999px;
	transition: 0.2s ease-in-out;
}

.bubble.personal::after {
	background-color: var(--personal);
	box-shadow: var(--personal-glow);
}

input:checked ~ .bubble::after {
	width: 10px;
	height: 10px;
	opacity: 1;
}

.create-todo .options label div {
	color: var(--dark);
	font-size: 1.125rem;
	margin-top: 1rem;
}

.create-todo input[type="submit"] {
	display: block;
	width: 100%;
	font-size: 1.125rem;
	padding: 1rem 1.5rem;
	color: #FFF;
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--primary);
	box-shadow: var(--personal-glow);
	border-radius: 0.5rem;
	cursor: pointer;
	transition: 0.2s ease-out;
}
>>>>>>> 42bebf4 (dwa)

.task .actions button:hover {
	opacity: 0.8;
}

.task .actions button:active {
	opacity: 0.6;
}

.task .actions .edit {
	background-image: linear-gradient(to right, var(--pink), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.task .actions .delete {
	color: red;
}