:root {
    --background: black;
    --color: #6495ed;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

span {
    display: inline-block;
}

.frame {
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame>.container {
    width: 800px;
    min-height: 600px;
    background-color: rgb(18, 18, 84);
}

/**/

.container>.content1 {
    display: flex;
    padding: 10px;
    color: white;
    font-size: 2em;
}

/**/
.container>.content2 {
    display: flex;
    gap: 20px;
    color: white;

}

.container>.content2 #srcbutton {
    width: 150px;
    height: 40px;
    background-color: crimson;
    cursor: pointer;
    border: 1px solid white;
    color: white;
}

.container>.content2>#srcinput {
    color: white;
    margin-left: 20px;
    border: none;
    border-bottom: 2px solid white;
    background-color: rgb(18, 18, 84);
    ;
}

/*contetn3*/

.container>.content3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    position: relative;
}

.container>.content3>.city.day {
    width: 180px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    border-radius: 10px;

    background-color: white;
    position: relative;
    transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045);

    cursor: pointer;
}

.content3>.city>.c {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content3>.city>.c1 {
    font-size: 2em;

}

.content3>.city>.c2 {
    font-size: 2.4em;
}

.content3>.city>.city>.c3 #image {
    width: 120px;
}

.content3>.city>.c4 {
    font-size: 1.3em;
}

.content3>.city>.c5 {
    font-size: .9em;
}

/*all-day-container==adc*/
.all-day-container.adc {
    position: absolute;
    padding: 5px;
    display: flex;
    gap: 10px;
    justify-content: center;
    transition: all .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: white;
    border: 1px solid black;
    border-radius: 4px;
    flex-wrap: nowrap;
    left: 0;
    top: 0;
    cursor: pointer;
}

.adc>.city {
    width: 95px;

}

.adc>.city .c {
    display: flex;
    justify-content: center;
    font-size: .9em;
}

.adc>.city:hover {
    opacity: .8;
}

.adc>.city .c5 {
    font-size: .7em;
}

.all-day-container.adc.show {
    visibility: visible;
    opacity: 1;
    width: 800px;
    height: auto;
}

.all-day-container.adc.hide {
    visibility: hidden;
    width: 0px;
    height: auto;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
}