
.main-weather-block {
    width: 90%;
    max-width: 1200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 5px 5px rgb(209, 209, 209);
}

.weather-day-block {
    width: 100%;
    border-bottom: 1px solid rgb(190, 190, 190);

}

.sub-heading-weather {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.weather-image-icon-main {
    width: 40px;
    height: 40px;

}

.weather-image-icon {
    margin-inline: 12px;
    width: 30px;
    height: 30px;
}

.sub-boxes-heading {
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    filter:brightness(90%);
}


.sub-heading {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(216, 216, 216);
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sub-heading-sub {
    background-color: rgb(128, 128, 128);
    width: 200px;
    height: 20px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white;
    font-weight: normal;
}
.sub-boxes {
    border-radius: 10px;
    height: 250px;
    border: 1px solid rgb(190, 190, 190);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-inline: 12px;
}

.weather-img {
    position: absolute;
    left: 30%;
    bottom: 120px;
    width: 70px;
}



.sub-stats {
    justify-content: center;
    padding: 10px;

}

.sub-stats p {
    font-size: 18px;
    height: 10px;
}

.sub-stats img {
    width: 35px;
    height: 35px;
    opacity: 80%;
}

.hr {
    
    width: 90%;
    background: none;
    background-color: grey;
    border-radius: 5px;
    height: 1px;

}

.hr-vertical {
    width: 3px;
    background: none;
    background-color: grey;
    border-radius: 5px;
    height: 50px;
    margin-inline: 20px;

}