* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    font-family: Pixelify Sans;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Asegura que el cuerpo ocupe toda la altura de la ventana */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown {
    display: flex;
    justify-content: space-evenly;
    width: 50%;
    flex-wrap: wrap;
}

.countdown div {
    display: grid;
    place-items: center;
    padding: 10px;
}

h2 {
    text-align: center;
    color: aliceblue;
    font-size: 40px;
    padding: 30px 10px;
}

p {
    display: grid;
    place-items: center;
    border: solid 1px #fff;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    background-color: #1bb587;
}

span {
    display: block;
    padding: 10px;
    text-align: center;
    color: rgb(246, 246, 246);
    font-size: 1.4rem;
    font-weight: 400;
}

.sms-final {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    place-items: center;
    transform: translateY(-100%);
    transition: ease-in-out 0.5s;
    background-color: #333;
}

.sms-finalc h2 {
    text-align: center;
    font-size: 100px;
    color: #fff;
}
