.weatherCard{
  width: 400px;
  height: 200px;
  font-family: 'Open Sans';
  position: relative;
}
.currentTemp{
  width: 220px;
  height: 200px;
  background: rgb(14, 234, 223);
  position: initial;
  top: 0;
  left: 0;
}
.currentWeather{
  width: 180px;
  height: 200px;
  background: rgb(14, 234, 223);
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.temp{
  font-size: 80px;
  text-align: center;
  display: block;
  font-weight: 300;
  color: rgb(255, 255, 255);
  padding: 20px 0 0;
}
.location{
  color: rgb(17, 17, 234);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  display: block;
}
.conditions{
  font-family: weathericons;
  font-size: 30px;
  display: block;
  padding: 20px 0 0;
  text-align: center;
}
.info{
  width: 180px;
  height: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgb(42, 178, 234);
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-align: center;
}
.rain {
  width: 50%;
  position: absolute;
  left: 10px;
  word-spacing: 60px;
  top: 3px;
}
.braine::before{
  display: block;
  content: '\f04e';
  font-family: weathericons;
  font-size: 40px;
  left: 6px;
  top: -4px;
  position: absolute;
}
.wind {
  width: 50%;
  right: -10px;
  position: absolute;
  word-spacing: 60px;
  top: 3px;
}
.bwinde::before{
  display: block;
  content: '\f050';
  font-family: weathericons;
  font-size: 25px;
  left: -10px;
  position: absolute;
  top: 5px;
}
