.contenedorclima{
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #525050;
}

.containercl{
    width: 19rem;
    height: 28.5rem;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1rem;
    -webkit-box-shadow: 7px 7px 5px 0px rgba(50,50,50,0.29);
    -moz-box-shadow: 7px 7px 5px 0px rgba(50,50,50,0.29);
    box-shadow: 7px 7px 5px 0px rgba(50,50,50,0.29);
}

.containercl.dia{
    background-image: url(../img/dia.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.containercl.noche{
    background-image: url(../img/noche.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.input{
    margin: 1rem auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 0.4;
}

.buscar_submit{
    display:flex;
    flex-direction: row;
}

.buscar_submit > button{
    visibility: hidden;
}

.buscar{
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
}

.buscar:focus{
    outline: none;
}

.input_numero{
    display: flex;
    align-items: center;
}

.input_centigrado{
    text-align: center;
    color: white;
    font-weight: bolder;
    font-size: 4rem;
}

.input_simbolo{
    font-size: 2rem;
    color: white;
}

.localizacion{
    display: flex;
    flex: 0.5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.localizacion_fecha{
    margin: 1.5rem;
}

.descripcion, .localizacion_ciudad{
    font-size: 1.3rem;
    font-weight: bolder;
    color: rgb(55, 54, 54);
}

.containercl.noche .descripcion{
    color: white;
}

.containercl.noche .localizacion_ciudad{
    color: white;
}

.containercl.noche .min{
    color: white;
}

.containercl.noche .max{
    color: white;
}

.containercl.noche .localizacion_fecha{
    color: white;
    font-weight: bolder;
}

.temperatura{
    flex: 0.1;
    border-top: 2px solid #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.min>span{
    font-size: 1.4rem;
    color: blue;
}

.max>span{
    font-size: 1.4rem;
    color: rgb(215, 21, 21);
}