body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    background-image:url('./pic.avif');
    background-repeat: no-repeat;
    background-size:cover;
}

h1 {
    font-size: 60px;
    font-weight: bold;
    font-family: cursive;
    margin-bottom: 20px;
}

.input{
    justify-content: center;
    align-items: center;
    gap: 10px; 
    margin-bottom: 20px;
    width:1200px;
    height:300px;
    text-align: center;
    background-color: color-mix(in lch longer hue, crimson 10%, olivedrab 10%);
   
}


#city {
    border-radius: 30px;
    padding: 13px;
    width: 300px;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #ccc;
    font-size: 13pt;
}
#city:hover{
    background-color:#f0f0f0 ;
}
button {
    background-color:lightgray;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13pt;
}
.sub{
    display:flex;
    justify-content: space-evenly;
    align-items: first baseline;
}
section {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-around;
    margin: 10px;
    padding: 10px;
}

.a, .b, .c, .d, .e {
    background-color:honeydew;
    width: 200px;
    height: 200px;
    border-radius: 90px;
    background-image: url('first.gif');
    background-size: cover;
    background-position: center;
}
.f, .g, .h, .i, .j {
    background-color: honeydew;
    width: 250px;
    height: 220px;
    border-radius: 30px;
    font-weight: 200;
    font-size: 18pt;
    padding: 20px;
    border:2px solid black;
}
select {
    padding: 8px;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    width: 150px;
    height:50px;
}

select:hover {
    background-color: #f0f0f0;
}

.i, .f, .g, .j, .h {
    opacity: 0; 
    transition: opacity 1s ease-in; 
}
.a, .b, .c, .d, .e {
    opacity: 0; 
    transition: opacity 1s ease-in; 
}

.show {
    opacity: 1; 
}
