*{
    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;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

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

.cardAired{
    transition: transform .2s;
    min-height: 400px;
    height: 400px;
    border-radius: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background: rgb(0,85,150);
    background: linear-gradient(90deg, rgba(0,85,150,1) 0%, rgba(28,152,237,1) 35%, rgba(0,212,255,1) 100%);
    color:aliceblue;
    font-size: 30px;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    margin:10px;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.cardAired:hover{
    transform: scale(1.03);
    cursor: pointer;
    background: rgb(0,85,150);
    background: linear-gradient(90deg, rgba(0,85,150,1) 0%, rgba(28,152,237,1) 35%, rgb(0, 183, 255) 100%);
}


