html {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;   
}

body {
    padding-top: 100px;
}

div {
    margin: 0 auto;
    text-align: center;
}

.weather-icon {
    font-size: 50vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.info-panel {
    font-family: arial, sans-serif;
    width: 10%;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.temperature-gauge {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 90px;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.1);

}

.temp-toggle {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.6);
    position: fixed;
    bottom: 0;
    margin: 0 auto;
    width: 90px;
}

.temp-toggle:hover {
    box-shadow: 0px 0px 10px #fff;
    text-shadow: 0px 0px 5px #fff;
}



