/* ==========================================
   Mobile Phones (0px - 767px)
   ========================================== */
@media (max-width: 767px) {

    body{
        display: block;
    }

    .container{
        width: 95%;
        padding: 1rem 0.5rem;
    }

    .cards{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .card{
        width: 100%;
    }

    ul{
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .tv{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-width: 0.8rem;
        box-sizing: border-box;
    }

    h1{
        font-size: 1.6rem;
    }

    h2{
        font-size: 1.2rem;
    }

    h3{
        font-size: 1.1rem;
    }

    #countdown,
    #countdown2{
        font-size: 1.2rem;
    }
}


/* ==========================================
   Tablets (768px - 991px)
   ========================================== */
@media (min-width: 768px) and (max-width: 991px) {

    body{
        display: block;
    }

    .container{
        width: 90%;
    }

    .cards{
        justify-content: center;
        gap: 1.5rem;
    }

    .card{
        width: 45%;
    }

    ul{
        width: 70%;
    }

    .tv{
        width: 100%;
        max-width: 700px;
        height: auto;
        aspect-ratio: 16 / 9;
        box-sizing: border-box;
    }
}