@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Sans&family=Hedvig+Letters+Serif:opsz@12..24&family=Nova+Square&family=Poppins&family=Roboto&family=Work+Sans&display=swap');



* {
    margin: 0;
    padding: 0;
    color: 	#d0d0d0;
    
}

.container {
    position: absolute;
    top: 80px;
    left: 100px;
    right: 100px;
    bottom: 80px;
    background-image: url('../images/bg4.jpg');
    background-repeat: no-repeat;
    border-radius: 5px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;  
    flex-direction: column;
    box-shadow: 0 100px 100px rgba(0,0,0,0.5), 
    0 0 0 100px rgba(0, 0, 0, 0.3);
}
                


body {
    background-image: url(../images/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    overflow: hidden;
}

h1 {
    text-align: center;
    font-size: 8em;
    line-height: 0.7em;
    
    margin: 12px 0 60px;
}

h1 span {
    display: block;
    font-weight: 300;
    letter-spacing: 6px;
    font-size: 0.2em;
}

.countdown {
    display: flex;
    transform: scale(2);
}

.time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px;
}

.time h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    margin: 0 0 5px;
}

@media(max-width: 500px) {
    h1{
        font-size: 45px;
    }

    .time{
        margin: 5px;
    }

    .time h2{
        font-size: 12px;
    }

    .time small {
        font-size: 10px;
    }
}