html {
	font-size: 100%;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	margin: 0px;
	padding: 0px;
	touch-action: manipulation;
}


body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-x: hidden;
    color: #333;
    display: flex;
    flex-direction: column;
}

* {
	font-family: 'Poppins', sans-serif;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

main {
	position: relative;
    z-index: 1;
    height: 100%;
    padding: 0 20px;
    background-size: cover;
    box-shadow: 2px 5px 30px rgba(0, 0, 0, .3);
    color: #fff;
    background-color: #3dc43d;
    background-image:url(pop-bg.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	text-align: center;
}

p {
	margin: 20px auto;
	max-width: 500px;
}

#normal-countdown {
	text-align: center;
}

#normal-countdown .time-sec {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 12px;
    height: 90px;
    width: 90px;
    border-radius: 100px;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, .5);
    background: #fff;
    color: #333;
}

#normal-countdown .time-sec .main-time {
	font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    color: #3dc43d;
    margin: 0;
}

#normal-countdown .time-sec span {
	font-size: .9em;
    font-weight: 600;
}