body {
    font-family: "El Messiri", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    background: #fffee9;
    margin: 0;
}
input,button{
	font-family: "El Messiri", sans-serif;
}
.box {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size : cover;
    background-position : center;
    overflow : hidden;
}

a, button {
	transition: 0.3s all ease-out;
}
a {
	color: #fff;
	text-decoration: none;
}
img.strock {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
a:hover {
	color: #fff;
}
textarea:focus, input:focus {
	outline: none;
}
#body-wrap {
	position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.container {
    margin: 50px auto;
    width: 91%;
    text-align: center;
}
header#header {
    margin-bottom: 120px;
}
.main-content h1 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 0;        
}
#countdown-clock{
	font-size: 30px;
	display: flex;
	justify-content: center;
	margin: 50px;
}
#countdown-clock > .time{
	background: rgba(137,137,137,0.3);
	border-radius: 10px;
	padding: 20px;
	margin-right: 10px;
}
#countdown-clock .time > span{
	font-weight: 700;
}
#countdown-clock .time small{
	padding-top: 5px;
	font-size: 12px;
	text-transform: uppercase;
    display: block;
}
.main-content p {
    font-size: 1em;
    margin: 0;
    color: #aaa;
}
#form .form-group {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
input::placeholder{
   color: #949393;
}

.form-group a {
    width: 100%;
}
.form-group button.submit-button {
    padding: 16px 30px;
    background-color: #222630;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 100%;
    border-radius: 16px;
    transition:.3s;
}
.form-group button.submit-button:hover {
    transform : scale(1.1);
}
.form-group button.submit-button span {
    font-weight: 700;
    padding-left: 5px;
}
#footer .social-links {
    padding-top: 20px;
}
#footer .social-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
#footer .social-links li {
    padding-right: 20px;
}
#footer .social-links ul a {
    font-size: 1.6em;
    text-decoration: none;
}
.copyright {
	color: #fff;
}

@media (max-width: 768px) {
	header#header {
	    margin-bottom: 50px;
	}
	#body-wrap {
		padding: 0px 20px;
	}
	#countdown-clock > .time {
		padding: 14px;
	}
	.form-group button.submit-button {
	    width: 140px;
        padding: 18px 9px;
	}
 }