.container{
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner{
    width: 100%;
}
.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo_media{
    width: 115px;
}
.logo_txt{
    margin-top: 5px;
    font-size: 2rem;
    font-weight: 700;
}
.timer{
    margin-top: 75px;
}
.timer_txt{
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}
.timer_body{
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timer_dec{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #fff;
    font-size: 2.6rem;
    color: #0f1e36;
    font-weight: 900;
}
.cta{
    margin-top: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta a{
    display: block;
    width: 125px;
}
.cta_txt{
    margin-left: 10px;
    font-size: 1.1rem;
}
@media (min-width: 768px){
    .logo_media{
        width: 136px;
    }
    .logo_txt{
        font-size: 2.5rem;
    }
    .timer_txt{
        font-size: 2.2rem;
    }
    .timer_dec{
        width: 63px;
        height: 63px;
        font-size: 2.8rem;
    }
    .cta a{
        width: 136px;
    }
    .cta_txt{
        font-size: 1.2rem;
    }
}