 * {
 	margin: 0;
 	padding: 0;
 }

.container {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: space-around;
	align-items: center;
	background-color: rgba(0, 0, 0, .8);
	position: relative;
}
.container .board{
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
	gap: 10px;
}

.container .box {
	width: 80%;
	height: 50%;
	border: 3px solid black;
	box-sizing: border-box;
	padding: 25px;
	overflow: auto;
	background-color: #eaeaea;
} 
#copy {
	position: absolute;
	right: 90px;
	top: 58%;
	font-size: 1em;
	padding: .4em .6em;
	background-color: rgb(255, 0, 0);
	color: white;
	font-weight: bold;
	border-style: none;
}
button{
	cursor: pointer;
}

.p {
	text-indent: 50px;
	text-align: justify;
	line-height: 23px;
	font-size: .9em;
}