@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background: url('amy-humphries-1TqyVmSgbJc-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 100vh;

    font-family: 'Poppins' sans-serif;

}
.container{
    padding: 20px 70px;
    color: rgb(24, 22, 22);


}
.current-info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.date-container{
    font-weight: 100;

}
.date-container #time{
    font-size: 70px;
  
}
.date-container #am-pm{
    font-size: 30px;
    margin-left: 20px;

}
.date-container #date{
    font-size: 30px;
}
.place-container{
    text-align: end;
}
.place-container #country{
    font-size: 20px;
    font-weight: 700px;
}
.forecast{
    position: fixed;
    left: 50%;
    top: 50%;
    display: flex;
    transform: translate(-50%, -50%);
    justify-content: space-between;
    padding-bottom: 15%;
    align-items: center;
    flex-direction: column;
    background: #000000d0;
    color: white;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    margin: 1em;
        
}
/* .form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  width: 50%;
} */

.input #inputValue {
    border: none;
    outline: none;
    padding: 0.4em 1em;
    border-radius: 24px;
    background: #7c7c7c2b;
    color: white;
    font-family: inherit;
    font-size: 105%;
    width: calc(100% - 100px);
}
.input #button {
    background: #7c7c7c2b;
    color: white;
    
}