* {
    font-family: 'Ubuntu Mono', monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 90vh;
    display: block;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
}

.container {
    width: 70%;
    text-align: center;
    background: rgb(39, 38, 38);
    padding: 60px;
    margin: 50px auto ;
    border-radius: 50px;

}

input {
    width: 80%;
    height: 30px;
    background-color: whitesmoke;
    font-size: 20px;
    font-weight: bold;
}

.busqueda {
    height: 40px;
    width: 40px;
    border: none;
    background: crimson;
    border-radius: 50px;
    padding: 10px;
    justify-content: centers;
    color: whitesmoke;
    cursor: pointer;
    transition: 3.s ease all;
}

.busqueda:hover {
    background: whitesmoke;
    color: crimson;
}

.caja-1 {
    color: skyblue;
}

.caja-2,
.caja-3 h1 {
    color: whitesmoke;
}

.texto-inicio {
    color: crimson;
    font-size: 35px;
}

.clima {
    display: block;
    width: 100%;
    height: 250px;
    margin-top: 30px;
}

.btn-reload {
    width: 100%;
    margin-top: 30px;
    padding: 10px;
    border: none;
    border-radius: 50px;
    background: crimson;
    font-size: 15px;
    font-weight: bold;
    color: whitesmoke;
    cursor: pointer;
    transition: .3s ease all;
}

.btn-reload:hover {
    border: 1px crimson;
    background: rgb(39, 38, 38);
    color: crimson;
}

footer{
    display: block;
    margin-top:10px;
    text-align: center;
    color: rgb(39, 38, 38);
    font-family: sans-serif;
    font-style: oblique;
    font-weight: 300;
    font-size: 13px;
    transition: .3s ease all;
    } 
    footer:hover{
        letter-spacing: 2px;
    }
    footer a{
        text-decoration: none;
        color: crimson;
        text-transform: uppercase;
        font-weight: 600;
    }
   

/* #btn{
    display: block;
} */
/* 
RESPONSIVE
*/
@media screen and (max-width:600px) {
    .container {
        width: 80%;
    }
}

@media screen and (max-width:500px) {
    .container{
        margin: 40px auto ;
    }
    .clima {
        height: 150px;
        margin-top: 10px;
    }

    .descripcion {
        font-size: 25px;
    }

    .texto-inicio {
        font-size: 25px;
    }

}

@media screen and (max-width:400px) {
    input {
        width: 100%;
    }

    .busqueda {
        margin-top: 15px;
    }
    /* footer{
        margin-top: 10px;
    } */

    /* .clima{
        height: 110px;
    } */

}