#clock-container {
    display: flex;
    justify-content: center;
    align-items: center;

    border: 2px solid;
    margin-bottom: 20px;
}

#clock {
    font-family: monospace;
    font-size: 5rem;
    font-weight: 400;
    text-align: center;
    backdrop-filter: blur(30px);
    color: rgb(45, 192, 233);
    background-color: hsla(0, 0%, 100%, 0.1);
    width: 100%;


}


.weatherMap {
    width: 800px;

    height: 600px;
    border: 0;
    overflow: hidden;
    margin-top: 10px;

}
.popup {
        max-width: 690px;
        /* min-width: 500; */
        height: 583px;
        border: 0;
        overflow: auto;
    }


@media(max-width:760px) {
    #clock-container {
        width: 100%;
    }
    .popup {
        /* max-width: px; */
        /* min-width: 500; */
        /* height: 583px; */
        border: 0;
        overflow: auto;
    }

    .weatherMap {
        width: 600px;

        height: 80vh;
        border: 0;
        overflow: hidden;
        margin-top: 10px;

    }


    

    #clock {
        font-family: monospace;
        font-size: 3rem;
    }

    #time-disp {
        display: none;
    }

}

@media (max-width: 576px) {
    .weatherMap {
        max-width: 450px;
        min-width: 400px;


    }
}