/* CSS WEATHER */

* {
    box-sizing: border-box
}

.Infos {
    width: 100%;
    background-color: #1F63DE;
    box-sizing: border-box;
    color: #FFF;
    text-align: center;
}

.Infos .Weather {
    box-sizing: border-box;
    border-top: solid 1px #FFF;
    font-size: 1.6vw;
    text-align: center;
    width: 100%;
    height: 5vh;
    margin-bottom: 0 !important;
}

.Infos .Weather #weather {
    border-right: solid 1px #FFF;
    display: inline-block;
    height: 100%;
    width: 49%;
}

.Infos .Weather #wind {
    display: inline-block;
    height: 100%;
    width: 50%;
}

.Infos .Weather img {
    display: inline-block;
    height: 70%;
}

.Infos .Time {
    text-align: center;
    font-size: 1.6vw;
    font-weight: 600;
    height: 5vh;
    margin: -2px 0 -4px 0;
}

.Infos .Date {
    font-size: 1.6vw;
    height: 5vh;
    margin-bottom: 0 !important;
}

.kmh, .degree {
    font-size: 1.4vw;
}

@media only screen and (max-device-width: 1000px) {
    .Infos {
        height: 8.7vh;
        width: 100%;
    }

    .Infos .Time {
        font-size: 2.4vh;
    }

    .Infos .Date {
        font-size: 1.6vh;
    }
}
