body {
    font-family: sans-serif;
    text-align: center;
    background-image: url("./weather-forecast-presentation-report-background-beautiful-clouds-aerial-view-aircraft-1477120.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}


.continer {
    width: 100%;
    height: 80vh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    margin-bottom: 50px;
}


#search {
    width: 450px;
    height: 6vh;
    font-size: 20px;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px;
    padding: 10px;
    outline: none;

}

@media (max-width:700px) {

    #search {
        width: 300px;
        height: 5vh;

    }

  

}

.weather {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: rgb(14, 90, 156);
}

.img {
    margin: 20px;
}

img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.temp {
    padding-right: 40px;
}
