#message-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(203, 205, 185, 0.88);
	position: fixed;
	inset: 0;
	z-index: 1000;
	cursor: pointer;
	animation: fadeIn 0.25s ease;
}

#message-overlay[hidden] {
	display: none;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to	 { opacity: 1; }
}

#message-wrapper {
	position: relative;
	background: #fff;
	width: 75%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 0 3rem 3rem;
	cursor: default;
}


.overlay-logo {
	padding-bottom: 40px;
	width:218px;
}


#close-button {
	position: absolute;
	top: 3rem;
	right: 3rem;
	width: 4.4rem;
	height: 4.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	color: rgb(110,119,81);
	font-size: 4rem;
	line-height: 1;
	border-radius: 50%;
	transition: color 0.15s, background 0.15s;
}

#close-button:hover {
	color: white;
	background: rgb(110,119,81);
}

@media (max-width: 600px) {
	#message-wrapper { 
		width: 90%; 
		padding: 0 1.5rem 2rem; 
	}
	
	#close-button {
		top: 5rem;
	}
}