body {
	color: whitesmoke;
	margin: 0%;
}

.all {
	display: flex;
	background-color: rgba(0, 0, 0, 0.1);
	height: 100vh;
	width: 100vw;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.js-clock {
	margin-top: 100px;

	font-size: 30px;
}

.greetings {
	font-size: 25px;
	font-weight: 800;
}

.form,
.greetings {
	display: none;
}

.showing {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.bgImage {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: -2;
	animation: fadeIn 0.5s linear;
}

.box {
	display: flex;
	position: absolute;
	align-items: center;
	justify-content: center;
	height: 500px;
	width: 500px;
	background-color: rgba(0, 0, 0, 0.2);
	border: 3px solid rgba(189, 188, 188, 0.8);
	border-radius: 50%;
	z-index: -1;
}

.js-weather {
	position: absolute;
	top: 20px;
	right: 30px;
	font-style: italic;
	font-weight: 800;
	font-size: 18px;
}

input {
	background-color: rgba(0, 0, 0, 0);
	padding: 10px 5px;
	margin-bottom: 40px;
	border: 0px;
	border-bottom: 3px solid rgba(255, 255, 255, 0.8);
	border-radius: 100%;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
}

input::placeholder {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

input:focus {
	outline: 0px;
	border-bottom: 5px solid rgba(244, 247, 32, 0.9);
	transition: 3s ease-in;
}

.js-form input {
	font-size: 20px;
}

.js-toDoForm input {
	font-size: 15px;
}

ul {
	display: flexbox;
	position: absolute;
	bottom: 10px;
	box-sizing: border-box;
	height: 220px;
	overflow: hidden;
}

li {
	font-weight: 800;
	font-size: 20px;
	list-style: none;
	margin-left: -80px;
	margin-bottom: 10px;
	text-align: center;
	width: 600px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}

li button {
	background-color: rgba(0, 0, 0, 0);
	border: rgba(0, 0, 0, 0);
}
