body{
	padding: 0; 
	margin: 0 auto;
	
}
.container{
	position: relative ;
	margin: 0 auto; 
	text-align: center; 
	margin-top:100px; 
}
.btn{
    padding: 29px 37px;
	background-color: #35e021; 
	border-radius: 4px; 
	color: #fff; 
	border:none; 
	font-weight: bold;
	text-transform:uppercase;
}
.popup{
	width: 400px; 
	height: 180px; 
	background-color: lightblue; 
	border-radius: 4px; 
	margin: 0 auto; 
	position: relative;
	display:none;
	z-index:1000;
}
p{
	font-size: 20px; 
	line-height: 100px; 
	
}
.options{
	position:absolute; 
	width: 100%; 
	bottom: 0; 
	left: 0; 
}
#close{
	width: 25px;
	height: 25px; 
	line-height:25px;
	font-size:25px;
	float:right;
	border: 2px solid brown;
	 border-radius: 50%; 
	 cursor:pointer; 
	 
}
a:first-child{
	float: left; 
	width: 50%; 
	background-color: green ; 
}
a:last-child{
	float: left; 
	width: 50%; 
	background-color: red; 
}
a{
	text-transform: uppercase;
	padding: 15px 0px;
	text-decoration: none; 
	text-align: center; 
	color: #fff;
}
.cover{
	 width:100%;
	 height: 100%;
	 position: absolute;
	 display:none;
	 background-color: rgba(0, 0, 0, 0.5);
	 top:0;
}
