@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'PT Sans Narrow', sans-serif;
    background: #11121a;
    background-image: url('https://source.unsplash.com/collection/11649432/1920x1080') ;
}


#conteiner {
    background: #000000d0;
    color: white;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 250px;
    margin: 1em;
}

#form-input-conteiner {
    border: none;
    outline: none;
}

#City-input {
    display: inline-flex;
    align-items: center;
   border: none;
   outline: none;
   padding: 0.5em 1em;
   border-radius: 24px;
   background: #7c7c7c2b;
   color: white;
   font-family: 'PT Sans Narrow', sans-serif;
   font-size: 100%;
}

#search {
    margin: 0.5em;
    border-radius: 50%;
    border: none;
    height: 2.5em;
    width: 2.5em;
    background: #7c7c7c2b;
    color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

button#search:hover {
    background: #7c7c7c6b;
}

#weather-data {
    max-width: 250px;
}
#weather-data h2 {
    font-size:30px ;
    margin-block-start: 20px;
    margin-block-end: 0px;
}

#weather-data p {
    margin: 0px;
    font-size: 36px;
}

#weather-data h2 {
    display: inline-flex;
    margin-left: 2px;
}

#btnDiv {
    display: grid;
    background: #000000d0;
    color: white;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 250px;
    margin: 1em;
}