@import url('fonts.css');
.countdown_container 
{
    font-family: 'Lab Grotesque', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    white-space: nowrap;
    color: #fff;
}

.time-block 
{
	background-color: #1c1c1c;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    max-width: 90px;
    padding: 5px;
    margin: 0 5px;
    text-align: center;
	border-radius: 5px;
	transition: background-color 0.3s ease-in-out;
	opacity: 0.7; 
}
.countdown_container .time-block:hover 
{
	background-color: #444;
	opacity: 0.7;
}

.number 
{
    font-size: 2rem;
}

.unit 
{
	font-family: 'Lab Grotesque', sans-serif;
    font-size: 0.5rem;
	text-transform: uppercase;
	font-weight: 700;
	color: #6ab7ff;
}

@media (max-width: 600px) 
{
    .time-block 
	{
        width: 70px;
        max-width: 70px;
        padding: 3px;
    }
    .number 
	{
        font-size: 1.5rem;
    }
    
    .unit 
	{
        font-size: 0.5rem;
    }
}

@media (max-width: 400px) 
{
    .time-block 
	{
        width: 50px;
        max-width: 50px;
        padding: 2px;
    }
    
    .number 
	{
        font-size: 1.2rem;
    }
    
    .unit 
	{
        font-size: 0.6rem;
    }
}