

body {
    margin:0;
    padding:0;
	font-family: 'Open Sans', sans-serif;
}
.wrapper {
    height:100vh;
    	background: url(../images/1.jpg?v=1) no-repeat right;
	background-size: cover;
	background-attachment: fixed;
}
.content {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
}
button {
    cursor:pointer;
	border-radius: 10px;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	border:none;
	outline:none;
	display: inline-block;
	text-align: center;
	margin:0 auto;
	padding: 20px 25px;
	margin-top: 30px;
    border-bottom:5px solid #00471e;
    /*background: rgb(24,136,42);*/
    background-image: linear-gradient(to right bottom, #cdcd0d, #92b11f, #5f9329, #33742c, #095529);
}

/* -----------------Time CountDown ----------------*/

.countDown{
    bottom: 17px;
	padding: 50px 15px;
	color: #000;
    margin: 0 auto;
    width: 345px;
    text-align: center;
    border-radius: 7px;
    background: rgb(24,136,42);
    background: linear-gradient(180deg, rgba(24,136,42,1) 0%, rgba(7,45,7,1) 100%);
}
p{
    margin: 0;
    padding: 0;
}
.countDown span {
    font-size: 16px;
    background: #dcd4b5;
    display: block;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding:4px 0;
    font-family:tahoma;
}
.note-time{
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
}
.countDown button{
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
    font-size: 1.4rem;
    padding: 5px;
    border: none;
    border-radius: 5px;
    outline: none;
    animation: zoom 1s infinite ease;
    -webkit-animation:zoom 1s infinite ease ;
    box-shadow: 0px 6px 15px -5px rgba(0,0,0,0.65);
    background: linear-gradient(to bottom, #fff48e 0%, #fecb1b 100%)
}

.timing{
    display: flex;
    justify-content: center;
    margin: 10px;
    font-weight: 700;
    font-size: 30px;
}
.timing div{
    font-family: 'Roboto', sans-serif;
    width: 75px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    margin: 0 5px;
    font-weight: 900;
    font-size: 50px;
}

@media (max-width: 768px) {
	.content {
		width:100%;
		box-sizing: border-box;
		padding: 0 10px;
		font-size: 7vw;
	}
	button { 
		font-size: 6vw;
	}

}
@media (max-width: 425px) {
	.countDown{
        width: 272px;
    }

}