*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}
body{
	background: #0e1014;
	/*transition: 1s;*/
	overflow: hidden;
}
header{
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}
.container{
	background: #1e1f27;
	padding: 10px 25px;
	text-align: center;
	width: 270px;
	height: 330px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
}
#circle{
	width: 100%;
	height: 100%;
	
	border-radius: 50%;
	transition: 0.2s;
		  

	transform: scale(0);

}
.circles{
	border: 6px solid #fff;
	border-radius: 50%;
	padding: 5px;
		width: 120px;
	height: 120px;
}
.hex{
	background: transparent;
	padding: 10px;
	border: 2px dotted #fff;
	width: 100%;
	margin: 30px 0;
	color: #ffff;
	border-radius: 5px;
}

#btn{
	padding: 10px 20px;
	background: #04b274;
	outline: none;
	border: none;
	font-size: 18px;
	border-radius: 5px;
	
	cursor: pointer;
}
#copy{
	padding: 10px 20px;
	background: transparent;
	outline: none;
	border: none;
	font-size: 18px;
	border-radius: 5px;

	cursor: pointer;
	border: 2px solid #04b274;
	color: #04b274;
}
.buttons{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#code{
	transition: 0.1s;
	
	font-size: 19px;
}
#copied{
	
	transition: 0.4s;
	background: #5a595e;
	color: #fff;
	padding: 15px;
	pointer-events: none;
	position: absolute;
	top: -5%;
	right: 50%;
	transform: translate(50%,-50%);
	z-index: -1;
	opacity: 0;
	border-radius: 5px;
}
#code::selection {
  color: #fff;
  background: transparent;
}
