.message-box {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 1001;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 10px;
	box-sizing: border-box;
}

.messagebox-container {
	position: relative;
	width: 100%;
	max-width: 500px;
	background-color: whitesmoke;
	border-width: 0px;
	border-radius: 5px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.messagebox-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-family: hand;
	font-size: 18px;
	background-color: whitesmoke;
	color: darkslategray;
	margin: 0px;
	padding: 3px 9px;
	border-width: 0px;
	border-radius: 3px;
	cursor: pointer;
}

.messagebox-close:hover {
	background-color: #E0E0E0;
}

.messagebox-text {
	font-family: hand;
	font-size: 20px;
	text-align: center;
}

.messagebox-image {
	width: 100%;
	max-width: 300px;
	border-radius: 10px;
    border-width: 3px;
    border-style: solid;
}