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:#2d13c0;
  border-radius: 5px;
  align-items: center;
}

@media (max-width:415px){
  body{
    background-image: url(vertical.jpg);
    background-size: cover;
  }
  .container {
    height: 98vh;
    margin: 10px;
    margin-top: 0px;
    justify-content: center;
  }
  .searchContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .searchContainer button {
    color: black;
  }
  .searchContainer input {
    width: 100%;
    border: none;
    outline: none;
    background-color: white;
    color: black;
  }
  .currentForcastDate {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
  .currentForcastDate div {
    margin: 10px;
    text-align: center;
  }
  .dailyForcastContainer {
    width: 100%;
    border-radius: 10px;
    background-color: #1c5689d6;
    height: 65vh;
    margin-top: 10px;
  }
  .dailyForcast {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0px;
    height: 9.25vh;
  }
  .maxMinTemp {
    display: flex;
    text-align: right;
    margin: 0px;
  }
  .maxMinTemp span {
    margin-left: 10px;
    width: 20px;
  }
  .currentForcast {
    background: #1c5689d6;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .currentForcastInfo {
    justify-content: space-between;
    width: 100%;
  }
  .temperatureContainer {
    display: flex;
    align-items: center;
  }
  #currentTemperatureUnit {
    padding: 0px;
  }
  .currentConditions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
  }

#alert{
  left:50%;
}
}






