*{margin:0; padding: 0; box-sizing: border-box;}

body{
    font-family: 'montserrat', sans-serif;
    color: #fff;
    background-image: url('img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.app{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    height: 100vh;
}

.header{
    margin-top: 70px;
    padding: 50px 20px 30px 20px;
}

.header h1{
    font-size: 50px;
    color: #fbb034;
    text-shadow: 1px 3px rgba(0, 0, 0, 0.9);
}

.header input{
    width: 100px;
    padding: 10px;
    background: transparent;
    outline: 0;
    border: 0;
    border-bottom: 2px solid #fbb034;
    text-align: center;
    text-decoration:none;
    font-size: 20px;
    color: #f2f2f2;
}

.city{
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 1px 3px rgba(0, 0, 0, .8);
}

.temp{
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 5px rgba(0, 0, 0, .1);
}

.desc{
    font-size: 25px;
    font-style: italic;
    text-shadow: 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.minmax{
    font-size: 24px;
    text-shadow: 1px 3px rgba(0, 0, 0, 0.8);
}

.button {
    background-color: #fbb034;
    border: none;
    color: black;
    text-align: center;
    padding: 3px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }