*{
    box-sizing: border-box;
}

#divContenedor{
    height: 1600px;   
}

.chip{
    width: 100%;
    border-radius: 25px;
    text-align: center;
    font-size: 23px;
    min-height: 165px;
    line-height: 50px;
    background-color: #005596;
    color:aliceblue;
    transition: background-color 0.5s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    
    -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;
    transform: scale(1.02);
}

.chip2{
    width: 100%;
    border-radius: 25px;
  
    font-size: 23px;
    min-height: 60px;
    line-height: 50px;
    background-color: #1c98ed;
    color:aliceblue;
    transition: background-color 0.5s ease;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    text-align: center;
    padding: 10px;
    margin:15px;
    -webkit-box-shadow: 2px 4px 16px -3px rgba(0,0,0,0.54);
    -moz-box-shadow: 2px 4px 16px -3px rgba(0,0,0,0.54);
    box-shadow: 2px 4px 16px -3px rgba(0,0,0,0.54);
}

.chip2:hover{
    background-color:#005596;
    transform: scale(1.02);
}

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

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


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

}

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

.img{
    width: 100%;
}

img{
    border-radius: 25px 25px 0px 0px;
}

a{
    text-decoration: none;
    color: aliceblue;
}

a:hover{
    color: aliceblue;
    text-decoration: none;
}

