body {
/* font-family: 'Montserrat', sans-serif; */
/*	font-family: 'Oxygen', sans-serif; */
	font-family: 'Roboto', sans-serif;
    font-weight: 300;
	font-size: 1.2em;
	background-color: #252627;
	color: #d2d2d2;
	margin: 0;
	padding: 0;
	text-align: center;
}
h1, h2, h3, h4, h5, h6 {
color: white;
margin-top: 1em;	
/* font-family: 'Oswald', sans-serif; */	
font-weight: 300;
/*	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
/*	color: black; */
/*	text-align: center; */
}
p, li {
	font-weight: 300;
	color: #cecece;
}
a {
color: #ff0054;
/*	color: #ff4056; */
/*	color: #00ff60; */
	text-decoration: none;
}
a:hover {
color: #e3024c;
/*	color: #e5263c; */
/* color: #07d856; */
/*	text-decoration: underline; */
}
.btn a {
	color: #fff;
	text-shadow: 1px 1px #000;
	font-size: 1.2em;
	font-weight: 400;
	text-decoration: none;
	padding: 1em;
	margin: 0.5em auto 0.5em -1em;
	border-radius: 5px;
	display: block;
	width: 100%;
	background: #ec1f24;
}
.btn a:hover {
	color: #fff;
	text-shadow: 1px 1px #000;
	text-decoration: none;
	background: #c31e22;
}
img {
	max-width: 100%;
}
.container {
	margin: 0 auto;
	padding: 0 4em;
}
.content {
/*	width: 600px; */
	margin: 0 auto;
	padding: 0 auto;
	text-align: center;
}
footer {
	margin: 1em auto;
}
footer p {
	text-align: center;
	color: #999999;
	font-size: 0.9em;
	margin: 0.9em;
	padding: 1em auto;
}
figcaption {
	color: #999999;
	margin: 0.5em auto;
	font-size: 0.9em;
}
.white {
	color: white;
	font-weight: 400;
}
/* popup */
.popup-overlay {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);

}

.popup {

font-family: Arial, sans-serif;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    background: #fff;

    padding: 20px;

    border-radius: 8px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}

.popup-content {

    text-align: center;

}

.popup .close {

    position: absolute;

    top: 10px;

    right: 10px;

    font-size: 20px;

    cursor: pointer;

    color: #333;

}

.popup #emailInput {

    width: 80%;

    padding: 10px;

    margin: 10px 0;

    border: 1px solid #ddd;

    border-radius: 4px;

}

.popup button {

    background-color: #4caf50;

    color: #fff;

    padding: 10px 20px;

    border: none;

    border-radius: 4px;

    cursor: pointer;

    font-size: 16px;

}