@import url('https://fonts.googleapis.com/css2?family=Castoro&family=Work+Sans:ital,wght@0,200;0,300;0,400;1,300;1,400&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}body{
    background:url('back.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;
    font-family:'poppins';
    overflow:hidden;
    height: 100vh;



}
.container{
    padding:20px 70px;
    color:white;

}
.current-info{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

}
.date-container{
    font-weight: 100;

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

}
.date-container .date{
    font-size:30px;
}

.place-container{
    text-align: end;

}
.place-container .time-zone{
    font-size:30px;
    font-weight:100;
    
}
.place-container.country{
    font-weight:700;
    font-size:30px ;
}
.current-info .other{
    display:flex;
    flex-direction: column;
    background-color: rgba(24,24,27,0.6);
    padding: 20px;
    border-radius: 10px;
    margin:10px 0px;
    border: 1px solid #eee;
}
.current-info .other .weather-item{
    display: flex;
    justify-content: space-around;
}
.future-forecast{
    background: rgba(24,24,27,0.8);
    position:fixed;
    padding: 25px;
    bottom: 0;
    display: flex;
    color:white;
    width: 100%;
    align-items: center;
    justify-content: center;


}
.future-forecast .today{
    display: flex;
    align-items: center;
    justify-content: center;
    padding:3rem;

}
.future-forecast .today .day{
    padding:5px 15px;
    background: #3C3C44;
    border-radius: 50px;

}
.future-forecast .today .temp{
    padding-top: 20px;
}
 .future-forecast .weather-forecast{
     display: flex;
     
 }
 .today .w-icon{
width: 90px;
}
 .weather-forecast-item .w-icon{
     width: 60px;
 }
 .weather-forecast .weather-forecast-item{
     display: flex;
     flex-direction: column;
     padding :15px;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
     border: 1px solid #eee;
     margin: 15px;

 }
 .weather-forecast .weather-forecast-item .temp{
     padding :3px;
     font-weight: 100;
 }
 .weather-forecast .weather-forecast-item .day{
     padding:5px 10px;
     background: #3C3C44;
     border-radius: 50px;
 }
 @media only screen and (max-width:730px){
     .future-forecast{
         justify-content: start;
         align-items: none;
         overflow-y: scroll;
     }
 }
 @media only screen and (max-width: 1400px){
    .future-forecast{
        justify-content: start;
        align-items: none;
        overflow-x: scroll;
    }
}
