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 {
	width: 100%;
  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;
	flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.box {
	min-width: 28rem;
	max-width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

p {
	width: 90%;
	text-align: center;
	color: rgb(5, 214, 214);
}

textarea {
width: 90%;
height: 10rem;
resize: none;
padding: 1rem;
margin: 2rem 0;
}

.tags {
	width: 90%;
}

.tags ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
}

.tags ul li {
	background-color: rgb(1, 163, 163);
	height: 3rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	flex: 1 1 auto;
	margin: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 5rem;
	color: white;
}