:root {
    --background-color: #e6e2d3;
    --box-background: #f5f2e9;
    --text-color: #333333;
    --border-color: #d1cdc0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --highlight-color: #4caf50;
}


.dataStation {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    background-color: var(--background-color);
}

.dataBox {
    box-shadow: 0 4px 6px var(--shadow-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    width: 100%;
    max-width: 15rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    background-color: var(--box-background);
}


@media screen and (min-width: 0) {
    .dataBox{
        margin: 1.125rem 0;
    }

    .dataStation{
        margin:0;
        padding: 0;
    }
}

@media screen and (min-width: 768px) {
    .dataBox{
        margin: 1.125rem;
    }

    .dataStation{
        margin:0 auto;
        padding: 2rem 10rem;
    }
}

.dataBox:hover{
    opacity: 0.65;
    background-color: #eee;
}

.temp{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/Cloud_Sun.png');
}

.hum{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/Wind.png');
}

.uv{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/Sun.png');
}

.press{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/Pressure.png');
}

.noise{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/noise.png');
}

.ppm{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/PM.png');
}

.wind{
    content: url('../img/icons/WeatherIconPack_CharlottedeWolfe/PNG/Wind.png');
}

.dataBox__img {
    height: 50px;
    margin-bottom: 0.5rem;
    filter: brightness(0) saturate(100%) invert(20%) sepia(10%) saturate(2076%) hue-rotate(86deg) brightness(90%) contrast(86%);
}

.dataBox__info{
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.dataBox__title{
    padding: 1.125rem;
    font-size: 1.5rem;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    color: #1c1c1c;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.dataBox__info-sym {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
}

.dataBox__info-num {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-right: 0.25rem;
}

.ppmBox{
    display: flex;
    flex-direction: column;
}

.ppmBox-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: center;
}

.dataBox__info-title{
    font-weight: 700;
    font-size: 1.75rem;
    font-family: 'Open Sans', sans-serif;
    color: #1f1f1f;
}

.ppmBox__content{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    align-content: center;
}