*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    background-image: url(./background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    
}
.app{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(0,0,0,.6);
    height: 100vh;
}
.header{
    padding: 50px 20px 30px 20px;
}
.header h1{
    font-size: 3rem;
    color: orange;
    padding-bottom: 20px;
    text-shadow: 1px 3px rgba(0,0,0,.6);

}
.header input {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 0;
    outline: 0;
    border-bottom: 1px solid orange;
    font-size: 1rem;
    text-align: center;
    color: #fff;
}
.city{
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 1px 4px rgba(0,0,0,.6);
}
.temp{
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 1px 4px rgba(0,0,0,.6);
}
.desc{
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 1px 4px rgba(0,0,0,.6);
}
.minmax{
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 1px 4px rgba(0,0,0,.6);
}