@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

@font-face {
  font-family: 'SolaimanLipi';
  src: url('../../assets/css/fonts/SolaimanLipi.ttf') format('truetype');
}

* {
	box-sizing: border-box;
}

body {
    font-family: 'SolaimanLipi', sans-serif;
	background-color: #126312;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
	margin: 0;
	text-align: center;
}


.fa-star {
	color: #fff;
	position: absolute;
	top: -20px;
	animation: fall linear forwards;
	font-size: 3rem;
}

@keyframes fall {
	to {
		transform: translateY(105vh);
	}
}

.countdown-container {
	display: flex;
}

.title {
	margin: 0;
	font-size: 1.5em;
}

.time {
	display: flex;
	font-size: 1.2em;
	flex-direction: column;
	margin: 0 15px;
}

.time h1 {
	margin: 0;
}

.time small {
	color: #ccc;
}

.floating-text {
	background-color: #001F61;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-family: 'Muli';
	padding: 7px 15px;
	left: 50%;
	text-align: center;
	z-index: 998;
}

.floating-text a {
	color: #FF7500;
	text-decoration: none;
}

.floating-btn {
	border-radius: 26.5px;
	background-color: ##4c34eb;
	border: 1px solid #001F61;
	box-shadow: 0 16px 22px -17px #03153B;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 20px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	text-decoration: none;
	z-index: 999;
}

.floating-btn:hover {
	background-color: #ffffff;
	color: #001F61;
}

.floating-btn:focus {
	outline: none;
}

/* Below 480 pixels width */
@media screen and (max-width: 480px) {
	.title {
		font-size: 1.1em;
	}
	.time {
		font-size: 1.0em;
	}
	.floating-btn {
		right: 10px;
	}
}