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

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

h1 {
	color: white;
	margin-bottom: 2rem;
	text-align: center;
}

.eyes {
	display: flex;
}

.eye {
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	background-color: white;
	box-shadow: 0 5px 45px rgb(0 0 0 / 20%), inset 0 0 15px #f5af19, inset 0 0 25px #f5af19;
	margin: 0 2rem;
	position: relative;
	display: block;
}

.eye::before {
	content: "";
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 3rem;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: black;
	border: 0.6rem solid rgb(8, 111, 245);
}
