
.container2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.countdown{
    display: flex;
    justify-content: space-evenly;
   /* width: 50%;*/
    flex-wrap: wrap;
}
.countdown div{
    display: grid;
    place-items: center;
    padding: 10px;
}
.dia h1{
    text-align: center;
    color: #fff;
    font-size: 40px;
    padding: 30px 10px;
}
.dia p{
    display: grid;
    place-items: center;
    border: solid 1px #fff;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    background-color: #f96332;
}
.dia span{
    display: block;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}
.final-sms{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    transform: translateY(-100%);
    transition: ease-in-out 0.5s;
    /* background-color: #333; */
}
.final-sms h2{
    text-align: center;
    font-size: 100px;
    color: #fff;
}



@media screen and (max-width: 768px) {
   .dia p{
    display: grid;
    place-items: center;
    border: solid 1px #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #f96332;
}
    }
