body {
	font-family: 'Cabin Sketch', sans-serif;
	font-size: 25px;
	background-color: #ffccd5;
	text-shadow: 1px 1px 0 #ffccd5;
}



h1 {
	max-width: 800px;
	margin: 50px auto;
	font-size: 50px;
	font-weight: bold;
}

.box {
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 50px;
	padding: 30px;
	box-sizing: border-box;
	border: 2px solid #f2c9e4;
	border-radius: 10px;
	box-shadow: 0px 0px 5px #bc3c8d;
	background-color: #de6eb5;
	background: linear-gradient(#f27ec7 0%, #d748a2 100%);
}

.box .standardTime,
.box .unixTime {
	padding-top: 15px;
}

.box .unixTime {
	display: none;
}

h2 {
	font-size: 30px;
	margin: 0;
}

p {
	margin: 15px 0 0 0;
}

a.button {
	position: relative;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	text-decoration: none;
	text-shadow: none;
	padding: 5px 10px;
	border-radius: 5px;
	margin-right: 5px;
	box-sizing: border-box;
}

a.button i.bi {
	display: none;
}

a.button:hover {
	background-color: rgba(0, 0, 0, 0.4);
}

a.active {
	border: 2px solid rgba(0, 0, 0, 0.5);
	padding-left: 35px;
}

a.active i.bi {
	display: block;
	left: 5px;
}

input[type=tel] {
	display: inline-block;
	font-size: inherit;
	font-family: inherit;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 5px;
	padding: 5px 10px;
	margin-right: 5px;
	text-align: center;
	color: inherit;
}

input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

a.currentTimeButton {
	display: none;
}

.copyText {
	display: none;
	padding: 0 10px;
}

#footer {
	max-width: 800px;
	margin: 50px auto;
	text-align: center;
	font-size: 15px;
}

#footer a {
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}


@media (prefers-color-scheme: dark) {
	
	body {
		background-color: #471c2d;
		color: white;
		text-shadow: none;
	}
	
	.box {
		border: 2px solid #986d89;
		box-shadow: 0px 0px 5px #30202a;
		background-color: #de6eb5;
		background: linear-gradient(#6c3457 0%, #552845 100%);
	}
	
}