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;
  background-color: #141627;
  font-family: "Roboto", sans-serif;
}

.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%;
  height: 80vh;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.box {
	width: 25rem;
	height: 25rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgb(192, 187, 187);
	transition: background-color 0.5s ease-in;
}

.bgblack {
	background-color: rgb(46, 54, 95);
}

.toggler__lable {
  background-color: rgb(0, 0, 0);
  width: 6rem;
  height: 3.5rem;
  border-radius: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2rem 0.5rem;
}

.sun,.moon {
  width: 2rem;
  height: 2rem;
}

.sun svg,.moon svg {
	fill: rgb(226, 213, 32);
}

.circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: white;
  position: absolute;
  border-radius: 50%;
	transition: transform 0.4s ease-in;
}

.night {
  transform: translateX(2.6rem);
}
