.modal {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(77, 77, 77, .7);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s;
}

.modal:target {
	visibility: visible;
	opacity: 1;
}

.modal_content {
	background-color: white;
	padding: 1em 1em;
	width: 20%;
	max-width: 90%;
	border-radius: 1%;
	font-size: 1em;
	font-style: italic;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.modal_content_big {
	background-color: white;
	padding: 1em 1em;
	width: 50%;
	max-width: 80%;
	border-radius: 10px;
	font-size: calc(32 * var(--res));
	font-style: italic;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.modal_close {
	position: absolute;
	right: 5px;
	top: 5px;
	background-color: #f4511e;
	color: white;
	border: none;
	border-radius: 4px;	
	text-align: center;
	font-size: 1em;
	font-style: regular !important;
	width: auto;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
}

.text-left-modal {
	font-style: italic;
	font-weight: bold;
	text-align: left;
	margin-left: 1%;
	color: #842;
	display: inline-block;
	float: left;
}

.text-center-modal {
	font-style: italic;
	font-weight: bold;
	text-align: center;
	color: #248;
	display: inline-block;
}

.text-right-modal {
	font-style: italic;
	font-weight: bold;
	text-align: right;
	margin-right: 1%;
	color: #444;
	display: inline-block;
	float: right;
}
