.popupcontainer {
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	top: 0;
	position: fixed;
    outline: none;
	z-index: 1;
}
.popup {
	background-color: black;
	border: solid black;
	width: auto;
	padding: 30px 40px;
	position: fixed;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	border-radius: 8px;
	font-family: Lato;
	display: none;
	text-align: center;
	z-index: 1;
	color: white;
}
.popup button {
	display: block;
	margin: 0 0 20px auto;
	background-color: transparent;
	font-size: 30px;
	color: white;
	border: none;
	outline: none;
	cursor: pointer;
}
.popup p {
	font-size: 16px;
	text-align: justify;
  	text-justify: inter-word;
	margin: 20px 0;
	font-weight: 600;
}
.popup a {
	display: block;
	width: 150px;
	font-size: 14px;
	position: relative;
	margin: 10px auto;
	text-align: center;
	background-color: white;
	color: #000000;
	text-decoration: none;
	padding: 10px 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
@media screen and (max-width: 768px) {
.popup {
	width: 60%;
}
}
