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

    display: flex;
    flex-direction: column;
    min-height: 100vh;
background-image: url(https://res.allmacwallpaper.com/get/Retina-MacBook-Air-13-inch-wallpapers/Armenia-2560x1600/2726-11.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
  }
  
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px 15px;
  }
  
  header input {
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 16px 0px 16px;
    box-shadow: 2px 3px 5px 4px rgb(113, 146, 237);

  
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    transition: 0.2s ease-out;
  }
  
  main {
    flex: 1 1 100%;
    padding: 25px 25px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .location .city {
    text-shadow: 1px 2px 4px rgb(0, 0, 0);
    color: #ffffff;
    font-size: 32px;
    font-weight:bold;
    margin-bottom: 5px;
  }
  
  .location .date {
    font-size: large;
    font-weight: bold;
    text-shadow: 1px 2px 8px rgb(0, 0, 0);
    color:white;
    font-size: 16px;
  }
  
  .current .temp {
    color: #fff;
    font-size: 102px;
    font-weight: 900;
    margin: 30px 0px;
    text-shadow: 2px 2px 8px rgb(0, 0, 0);
  }
  
  .current .temp span {
    font-weight: 500;
  }
  
  .current .weather {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 2px 3px 8px rgb(0, 0, 0);
  }
  
  .current .hi-low {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 1px 4px 8px rgb(0, 0, 0);
  }