body{
  color: white;
  background-image: url("bg.jpg");
  top:0;
  left:0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.container{
  display: flex;
  flex-direction: column;
  margin: 20px;
}
.searchContainer {
  margin-bottom:20px;
}
.searchContainer input{
  height: 40px;
  width: 540px;
  border-radius: 5px;
  padding: 10px;
}
.searchContainer button {
  width: 37px;
  height: 37px;
  font-size: 16px;
  background-color: white;
  border-radius: 5px;
  border:none;
  cursor: pointer;
}
.currentForcast{
  display: flex;
  flex-wrap: wrap;
}
.currentForcastInfo{
  display: flex;
  width:400px;
}
.currentForcastDate {
  display: flex;
  flex-direction: column;
  text-align: right;
  width: 180px;
}
#dayTemperature {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 48px;
}
#currentTemperatureUnit{
  font-size: 16px;
  display: inline-block;
  padding-left: 10px;
}
.currentConditions {
  padding-left: 10px;
  color: whitesmoke;
}
.dailyForcastContainer {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  text-align: center;
  cursor: pointer;
}
.dailyForcast{
  margin-right: 10px;
  width: 75px;
}
.weekday{
  text-align: center;
}
.maxMinTemp{
  text-align: center;
}
.temp{
  padding-right: 5px;
}

#alert {
  width: 300px;
  height: 40px;
  display: none;
  position: fixed;
  text-align: center;
  align-content: center;
  justify-content: center;
  left:30%;
  top:20%;
  transform: translate(-50%);
  font-size: medium;
  font-weight: bold;
  z-index: 1000;
  background-color: whitesmoke;
  color:#d10404;
  border-radius: 5px;
  align-items: center;
}

@media (max-width:415px){
  .searchContainer input {
    width: 85%;
  }
  .currentForcastDate{
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
    border-bottom: 1px solid lightgray;
  }
  .currentForcastDate div {
    margin: 10px;
    text-align: center;
  }
  .dailyForcastContainer {
    margin-left: 10px;
    margin-right: 10px;
  }
  .dailyForcast{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .maxMinTemp{
    display: flex;
  }
  .maxMinTemp span {
    margin-left: 10px;
    width: 20px;
  }
  #alert{
    left:50%;
  }
  body {
    background-image: url(vertical.jpg);
  }
}






