*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000;
    color:#fff;
    height:100vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

body:before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1600&q=80') center;
    background-size:cover;
    opacity:.18;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.72);
}

.container{
     position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 766px;
}

.logo {
    width: 150px;
    margin-bottom: 5px;
}

h1{
    font-size:58px;
    color:#ff2020;
    margin-bottom:20px;
}

p{
    color:#ddd;
    font-size:18px;
    line-height:30px;
    margin-bottom:30px;
}

#countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

#countdown div{
    width:120px;
    height:120px;
    border:2px solid #ff2020;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

#countdown span{
    font-size:40px;
    color:#ff2020;
    font-weight:700;
}

#countdown small{
    margin-top:5px;
    color:#fff;
}

.btn{
    margin-top:45px;
    display:inline-block;
    text-decoration:none;
    color:#fff;
    background:#ff2020;
    padding:15px 40px;
    border-radius:40px;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    color:#000;
}

@media(max-width:768px){

.logo{
width:130px;
}

h1{
font-size:34px;
}

#countdown div{
width:90px;
height:90px;
}

#countdown span{
font-size:28px;
}

}