/* Made by Christian Bernier
February 1st, 2019 */

:root{
    --text-black: #222;
}

html, body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    height: 100vh;
    background-color: #efefef;
}

#main-temp{
    color: var(--text-black);
    font-family: "Arial", sans-serif;
    text-align: center;
    margin-top: 35px;
    font-size: 15vw;
}
#gen-info{
    color: var(--text-black);
    font-family: "Arial", sans-serif;
    text-align: center;
    margin-top: -10vw;
    font-weight: 600;
}
#bars{
    background-color: #e0e0e0;
    width: 100vw;
    height: 45px;
}
#times{
    margin-top: 5px;
    width: 100vw;
}
.time{
    display: block;
    float: left;
    /* border: 1px dashed blue; */
    font-family: "Arial", sans-serif;
    width: calc(100vw / 16);
    margin-right: calc(100vw / 16);
}
#images{
    padding: 0 5vw;
    padding-top: 35px;
    
}
.image{
    width: 15vw;
    height: 15vw;
    margin-left: 2.5vw;
    border-radius: 15vw;
}
#img-1{
    margin-left: 0;
}
.day{
    display: block;
    width: 15vw;
    margin-left: 2.5vw;
    font-family: "Arial", sans-serif;
    text-align: center;
}
.day-element{
    display: inline-block;
}
#day-1{
    margin-left: 0;
}
#refresh-banner{
    height: 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 70vw;
    background-color: #e0e0e0;
}

@media screen and (max-width: 500px){
    .day{
        border: 1px dashed blue;
        width: 30vw !important;
        margin-left: 30vw !important;
        margin-right: 35vw !important;
        display: block;
    }
    .day-element{
        margin-bottom: 20px;
    }
    .image{
        display: block;
        width: 30vw !important;
        margin-left: 30vw !important;
        margin-right: 35vw !important;
        height: 30vw !important;
    }
}