html {
  box-sizing: border-box;
  font-size: 62.5%; /* font-size: 10px; */
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
  height: 100vh;
  background-color: #141627;
  font-family: "Roboto", sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.back {
	width: 7rem;
	height: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: brown;
	border-radius: 1rem;
	position: absolute;
	top: 1rem;
	left: 1rem;
}

.back a {
	color: white;
}

.container {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* Reset Style */
a {
  text-decoration: none;
}

.clock {
	width: 30rem;
	height: 30rem;
	background: url(./clock.png);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.clock::before {
	content: "";
	width: 1rem;
	height: 1rem;
	background-color: rgb(82, 0, 0);
	position: absolute;
	border-radius: 50%;
	z-index: 11;
}

#hour {
width: 10rem;
height: 10rem;
position: absolute;
display: flex;
justify-content: center;
}

#minute {
	width: 12rem;
	height: 12rem;
	position: absolute;
	display: flex;
	justify-content: center;
}

#second {
	width: 15rem;
	height: 15rem;
	position: absolute;
	display: flex;
	justify-content: center;
}


#hour::before {
content: "";
position: absolute;
width: 0.6rem;
height: 5rem;
background: linear-gradient(55deg, rgba(112,106,242,1) 0%, rgba(177,91,253,1) 100%);
border-radius: 3rem 3rem 0 0;
z-index: 10;
}

#minute::before {
content: "";
position: absolute;
width: 0.5rem;
height: 6rem;
background: linear-gradient(55deg, rgba(112,106,242,1) 0%, rgba(91,196,253,1) 100%);
border-radius: 3rem 3rem 0 0;
z-index: 9;
}

#second::before {
content: "";
position: absolute;
width: 0.4rem;
height: 7.5rem;
background: linear-gradient(55deg, rgba(242,106,106,1) 0%, rgba(246,49,49,1) 100%);
border-radius: 3rem 3rem 0 0;
z-index: 8;
}