.weather-display {
  /*height: 350px;
  width: 580px;

  background-color: #fff;*/
}

.square {
color: #fff;
    text-align: center;
    float: left;
        margin-top: -40px;
}

p.temp {
    font-size: 100px;
    margin: 0;
    padding: 10px 0 0 15px;
    font-weight: bold;
    color: #26607a;
    font-family: 'Mea Culpa';
}

p.city {
  font-size: 0.9em;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.weather .icone {
font-size: 80px;
 /* padding: 40px;*/
    float: left;
    color: #26607a;
    margin-left: 20px;
    margin-right: 20px;
}


@media screen and (max-width: 1680px){

    .weather .icone {
        font-size: 70px;
    }

    p.temp {
        font-size: 80px;
    }
}

@media screen and (max-width: 1280px){

    .weather .icone {
        font-size: 50px;
    }

    p.temp {
        font-size: 60px;
    }
}

@media screen and (max-width: 980px){

    .weather .icone {
        font-size: 50px;
        margin-left: 10px;
    }

    p.temp {
        font-size: 50px;
    }

    .square{
        margin-top: -27px;
        margin-bottom: 20px;
    }
}

