@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
	padding: 0;
	margin: 0;
	outline: 0;
}

html {
	box-sizing: border-box;
	font-size: 8px;
}
body {
	/* font Family */
  font-family: "Spectral", serif;
  font-weight: 800;
  font-style: normal;
}

.main {
	width: 100%;
	height: 100vh;
	background-color: rgb(0, 20, 0);
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}

.clock {
	font-size: 4em;
}

#day {
	color: rgb(255, 73, 41);
	opacity: 0.7;
  font-family: "Spectral", serif;
  font-weight: 300;
  font-style: italic;
}

#ampm{
  font-family: "Spectral", serif;
  font-weight: 300;
  font-style: italic;
}

.clock p {
	color: #ffffff;
	font-size: 1em;
  font-family: "Spectral", serif;
  font-weight: 200;
  font-style: italic;
}

.clock span:first-child {
	color: tomato;
}

.clock span:last-child {
	color: #ffffff;
	font-weight: normal;
}
