.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header h1 {
    font-size: 40px;
}

.header h3 {
    font-size: 12px;
    color: var(--textoPrincipalColor);
}

.container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timer {
    display: grid;
    grid-template-columns: repeat(7, );
    justify-content: center;
    gap: 5px;
    align-items: center;
}

.timer p {
    font-size: 20px;
    color: var(--textoPrincipalColor);
}

.timer .card-timer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 100px;
    background-color: #050816;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 2px solid #1E293B;
}

.card-timer svg {
    width: 30px;
    height: 30px;
    color: var(--textoPrincipalColor);
}

.card-timer h1 {
    font-size: 22px;
}

.card-timer h2 {
    font-size: 10px;
    font-weight: 200;
    color: var(--textoPrincipalColor);
}

.button {
    margin-top: 50px;
    width: 200px;
    border-radius: 10px;
    height: 50px;
    background-color: var(--textoPrincipalColor);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: transparent;
    text-decoration: none;
}

.button svg {
    width: 20px;
    height: 20px;
    color: #050816;
}

a h1 {
    font-size: 14px;
    color: #050816;
}

.t1 {
    grid-area: 1 / 1 / 2 / 2;
}

.t2 {
    grid-area: 1 / 3 / 2 / 4;
}

.t3 {
    grid-area: 1 / 5 / 2 / 6;
}

.t4 {
    grid-area: 1 / 7 / 2 / 8;
}

.footer {
    position: fixed;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.container1>p {
    text-align: center;
    font-size: 12px;
    color: var(--textoPrincipalColor);
}

.footer p {
    font-size: 9.5px;
    font-size: 300;
}

@media (max-width: 600px) {

    html, body {
        background: url('../../multimedia/Fondo-mobile.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
    }

    .container {
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .header {
        position: fixed;
        top: 20px;
    }

    .container>span {
        display: none;
    }

    .container1>p {
        margin-top: 30%;
    }

    
}

@media (min-width: 600px) {
    html, body {
        background: url('../../multimedia/Fondo-pc.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        gap: 100px;
    }

    .container>span {
        width: 2px;
        height: 50%;
        border-radius: 100px;
        background-color: var(--textoPrincipalColor);
    }

    .container1>p {
        margin-top: 0;
    }
}
