@CHARSET "ISO-8859-1";

@font-face {
    font-family: 'digital';
    src: url('../fonts/DS-DIGIT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
	font-family: 'Inconsolata', serif;
}

.homepage h1{
	letter-spacing: 1.5px;
}

.countdown{
	 font-family: 'digital', sans-serif;
	 font-size: 68px;
}

#countdown {
    width: 100%; /* Fixed width */
    text-align: center; /* Ensures the countdown text is centered */
    overflow: hidden; /* Prevents text from overflowing the container */
    white-space: nowrap; /* Prevents wrapping the text onto the next line */
}


/*MEDIA QUERIES*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
	
	.homepage h1{
		font-size : 1.5rem ;
	}
	
	
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	
	
	.homepage h1{
		font-size : 2.5rem ;
	}
	
}

/* large devices (small laptops, 992px and up) */
@media (min-width: 992px) {
	
	
	
}

/* XL devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
	.countdown{
		 font-size: 100px;
	}
	
}

/* XXL devices (large desktops, 1200px and up) */
@media (min-width: 1600px) {
	
	
	
	
	
}