:root{
    --background: #EEF3ED;
    --dark: #548164;
    --text: rgb(55, 53, 48);
}

#background{
    border-radius: 10px;
    background-color: var(--background);
    color: var(--text);
    font-family: 'Segoe UI', 'San Francisco', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; 
}
#date-time-container{
    height: 100vh;
    display: grid;
    justify-content: left;
    align-content: baseline;
    margin: 0;
    padding: 5%;
}
#date{
    font-size: large;
}
#time{
    font-size: xx-large;
}

#weather-main-container{
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin: 0;
    padding: 5%;
}

#weather-container{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 350px;
    height: 100px;
}
#weather-text{
    max-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    font-size: large;
    gap: 0px;
    margin-bottom: 15px;
}
#temp-text{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 15px;
}
#temp{
    font-size: xx-large;
}
#misc-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
}
.misc-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
    font-size: small;
    gap: 0px;
}

#spacer-line{
    height: 1px;
    background-color: #373530;
    opacity: 0.5;
    margin-left: 5%;
    margin-right: 5%;
}

#forecast-container{
    width: 350px;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.forecast-day{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
}
.forecast-temp{
    display:flex;
    gap: 5px;
    font-size: small;
}
.temp-low{
    color: rgba(55, 53, 48, 0.8)
}
.temp-high{
    font-weight: 500;
}

.weather-icon{
    vertical-align: top;
    width: 100px;
    height: 100px;

    filter:
        brightness(1.1)
}
.misc-icon{
    width: 15px;
    height: 15px;
}
.forecast-icon{
    width: 40px;
    height: 40px;
    margin: -10px;

    filter:
        brightness(1.1)
}