*{
    box-sizing: border-box;
}



.chip{
    width: 100%;
    border-radius: 25px;
    text-align: center;
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    background-color: #005596;
    color:aliceblue;
    transition: background-color 0.5s ease;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.chip:hover{
    background-color:#1c98ed;
}

.cardAired{
    transition: transform .2s;
    min-height: 445px;
    height: 445px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #1c98ed;
    color:aliceblue;
    font-size: 30px;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;

}

.cardAired:hover{
    transform: scale(1.03);
    cursor: pointer;
    background-color: #005596;
}

.div_{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    width: 100%;
    margin:5px;
}

#ub_{
    font-size: 25px;
}

#sub1_{
    font-size: 20px;
}

@media (max-width: 1100px) {

    #sub1_{
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    #ub_{
        font-size: 20px;
    }

    #sub1_{
        font-size: 15px;
    }
}
