.weather-app {
    background:linear-gradient(to bottom, rgba(100,0,0,1), rgba(0,0,100,1));
    min-height:100vh;
    display:flex;
    flex-direction:column;
}
.searchbox {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 15px 15px;
  }
  .search input {
    width:100%;
    max-width:300px;
    padding:10px 15px;
    border:none;
    outline:none;
    border-radius:20px;
    background:rgba(255,255,255,0.7);
    color:black;
    font-size:20px;
    transition:0.5s;
  }
  .search input:focus {
    background:rgba(255,255,255,1);
  }
  header img{
    width: 200px;
    display:block;
    position: relative;
}
header button{
    background-color: black;
    padding:10px
}
header a{
    color: white;
    text-decoration: none;
    font-size: larger;
}
span{
    margin-right: 25px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}


header a {
    color: #fff;
    text-decoration: none;
    margin-right: 1rem;
}
.location .city {
  color:white;
  font-size:32px;
  margin-bottom:10px;
}

.location .date {
  color:white;
  font-size:18px;
}

.current .temp{
  color:white;
  font-size:100px;
  margin:30px 0px;
  text-shadow:2px 10px rgba(0,0,0,0.5);
}

.current .weather {
  color:white;
  font-size:50px;
  margin:30px 0px;
  text-shadow:2px 4px rgba(0,0,0,0.5);
}

.current .hi-low {
  color:white;
  font-size:30px;
  margin:30px 0px;
  text-shadow:2px 4px rgba(0,0,0,0.5);
}
.location {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .current {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  iframe {
    width: 500px;
    height: 500px;
    border: none;
}

