body {
	font: 16px 'Inter', Arial, sans-serif;
}
.modal-button {
	display: block;
    max-width: 200px;
    height: 30px;
    background: #aa2a2a;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    box-shadow: 2px 5px 5px #777;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-color: #222;
}
.modal {
	position: absolute;
	width: 50%;
	max-width: 800px;
	height: auto;
	border: solid thin #eee;
	border-radius: 10px;
	padding: 20px;
	opacity: 1;
	box-shadow: 5px 5px 5px 1px #777;
}
.modal-title {
	font-size: 2rem;
}
.close-button {
	position: absolute;
	top: 5px;
	right: 0px;
	width: 20px;
	height: 20px;
	font: 14px;
	content: 'X';
	cursor: pointer;
}
