body{
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}
#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}


.container{
   background-color: transparent; 
   max-width: 900px;
   margin: 30px auto;
   padding: 20px;
   border-radius: 10px;
   text-align: center;
   box-shadow: 0 30px 50px rgb(65, 50, 100, 0.08);
   
}
header{
    border-bottom: 1px solid #f7f7f7;
    padding: 2px 0 30px ;
}
.search-input{
    background-color:#f7f9fe;
    width: 50%;
    border-radius: 20px;
    padding: 20px;
    font-size: 16px;
}
.search-button{
    background-color: purple;
    color: white;
    border-radius: 20px;
    padding: 20px;
    font-size: 16px;
    margin-left: 5px;
    width: 150px;
}
.weather-app{
    display:flex;
    justify-content: space-between;
    padding: 30px 0;
}
main{
    padding: 30px 0;
}
h1{
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 48px;
}
.app-details{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    word-spacing: 5px;
}
.app-details strong{
    color: #f65282;
}
.temp-container{
    display: flex;
}
.app-temp{
    font-size: 88px;
    line-height: 88px;
    font-weight: 400;
    margin-left: 10px;
}
.temp-icon{
    width: 88px;
    height: 88px;
}
.temp-unit{
    font-size:30px;
}
.forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 38px;
    
}
.fore-day{
    font-size: 25px;
    font-weight: 100;
    line-height: 28px;
    color: rgba(128, 128, 128, 0.863);
    margin-bottom: 10px;
}
.fore-icon{
    width: 88px;
    height: 88px;
    margin-bottom: 0 auto;
    display: block;
}
.fore-temp{
    font-size: 18px;
    color: #f65282;
    word-spacing: 5px;

}
a{
    color:purple ;
}
footer{
    border-bottom: 1px solid #f7f7f7;
    padding: 30px 0 0 0;
    text-align: center;
    color: white;
    bottom: 0;
}