html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    color: white;
    text-shadow: 1px 1px gray;
    background-color: black;
}

.main {   
    position: sticky;
    left: 0;
    top: 0;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.settings >  button {
    background-color: paleturquoise;
    padding: 5px;
    border-radius: 25%;
    color: black;   
}
.settings {   
    border-radius: 50px;
    border: 5px ridge darkgrey; 
    text-align:     center;
    background-color: antiquewhite;
    color: darkblue;  
    max-width: fit-content;
    margin-top: 10em;    
    margin-left: auto;
    margin-right: auto;
    padding: 2%;
}

.main-image {
    z-index: 1;
}

.datetime {
    position: fixed;
    top: 0;
    left: 4em;

}

.weather-card {
    position: fixed;
    top: 0;
    left: 250px;    
}

.temp_text {
    font-size: xxx-large;
}

.weather {
    font-size: x-large;
}