body {
	background: rgb(1, 7, 67);
	place-items: center;
	display: grid;
	transition: all 0.5s ease;
}
.clock {
    color: white;
	position: relative;
    font-size: 40px;
	border-radius: 7px;
	margin: auto;
	margin-top: 200px;
	display: block;
	width: 310px;
	background: rgba(221, 144, 239, 0.7);
	padding: 5px;
	max-width: 350px;
    text-align: center;
    padding: 50px 0;
	transition: all 0.5s ease;
}
.mode {
	width: 60px;
	height: 30px;
	background-color: gray;
	border-radius: 50px;
	display: flex;
	margin-top: 10px;
	margin-left: 400px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 5px;
	box-sizing: border-box;
	transform: scale(1.2);
	transition: background 0.5s ease;
}
.mode_moon {
	width: 20px;
	height: 20px;
	background-image: url("assets/dark.png");
	background-size: cover;
	background-repeat: no-repeat;
}
.mode_sun {
	width: 20px;
	height: 20px;
	background-image: url("assets/light.png");
	background-size: cover;
	background-repeat: no-repeat;
}
.mode_ball {
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: black;
	cursor: pointer;
	left: 32px;
	transition: all 0.5s ease;
    opacity: 0.6;
}