*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
   

}
:root{
    --background: url(https://global-uploads.webflow.com/60d21862724092349138065e/60d22a662e93a76ff5878b0a_geometry.png);
    --color: #454545;
    --headclr: black;
    --navbackground:  #fafafa;
    --fabcolor:  #507814;
    --btntextcolor: white;
    --copyrightcolor: #8f8f8f;
    --border: .2px solid #8f8f8f;
    --box-shadow: 0px 0px 15px rgba(152, 152, 152, 0.4);
   
}
.dark-mode{
    --background: #232323;
    --color: white;
    --headclr: white;
    --navbackground: #2b2b2b;
    --fabcolor:  #93c449;
    --btntextcolor: #202020;
    --copyrightcolor: white;
    --box-shadow: 0px 0px 15px rgba(52, 52, 52, 0.4);
   
}


body{
    background: var(--background);
    color: var(--color);
    background-size: auto;
    background-position: 0 0;
    transition: 1s;
    
   
}

.icon{
    width: 40px;
    padding-top: 5px;
    margin: 0;
    
    
}

.weather{
    
    font-size: 14px;
    margin:0;
    color: #8eb2cf;
    padding-bottom: 5px;
    font-weight: bold;
    
}
.temp{
    font-size: 14px;
    margin: 0;
    color: #305675;
    
}

.spacer{
   
    width: 100%;
    height: 7rem;
    
}


.spacer2{
    
    width: 100%;
    margin-top: 100px;
    padding: 5rem; 
    background: var(--navbackground);
    position: relative;
    top: 7rem;
    transition: 1s;
    
}
.night{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    flex-wrap: nowrap;
    border-bottom: .1px solid var(--color);
    width: 120px;
    margin: auto;
    padding: .5rem;
    transition: 1s;
   
}
.night p{
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-size: .9rem;
    color: var(--color); 
    transition: 1s;
    
}
.night button{
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--color); 
    transition: 1s;
   
}

/* Controller for the social media icons */
.social{

    width: 100%;
    margin: 20px 0;
 
}

.social_child{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

}

.social_child ul li{
   
    list-style: none;
    display: inline-block;

}
.social button{
    background-color: unset;
    cursor: pointer;
    border: none;
    
}

.fab {
    
    font-size: 1.7rem;
    color: var(--fabcolor);
    padding: 7px;
    
}
/* controller for the copyright stamp */
.copy{
    text-align: center;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    color: var(--copyrightcolor);
    margin-bottom: .7rem;
    font-size: 15px;
}



/* Scrollup button */
#scrollBtn{ 
    display: none;
    border: none;
    background: none;
    position: fixed;
    bottom: 30px;
    right: 1rem;
    font-size: .5rem;
    cursor: pointer;
    z-index: 2;
}
#scrollBtn .fa-solid{
        --fa-bounce-start-scale-x: 1; 
        --fa-bounce-start-scale-y: 1; 
        --fa-bounce-jump-scale-x: 1; 
        --fa-bounce-jump-scale-y: 1; 
        --fa-bounce-land-scale-x: 1; 
        --fa-bounce-land-scale-y: 1; 
        --fa-bounce-rebound: 0;
        color: var(--fabcolor);
        
}
   


@media screen and (max-width: 900px){
    
    .container h2{
        display: none;
        font-size: 1.7em;
        filter: none;
    } 
    .weather{
    
        font-size: 13px;
        color: #8eb2cf;
        
    }
    .temp{

        font-size: 13px;
        color: #1d405c;
        
    }
    .icon{

        width: 30px;
     
    }
    .spacer{
        height: 4rem;
    }
    
    .copy{

        font-size: 13px;

    }
    #scrollBtn .fa-solid{
        
        font-size: 2.3rem;
        
        
    }
    .night2{
        display: flex;
    }
    
}
