* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Vazirmatn", sans-serif;
}
body{
    /* background-color: black; */
    overflow: hidden;
    background-image: url(https://media.tahlilbazaar.com/d/2020/06/03/3/25796.jpg);
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    
}
 

.title{
    text-align: center;
    margin: 5px auto;
}

.card{
    width: 90%;
    max-width: 470px;
    background-color: rgba(0, 255, 255, 0.36);
    text-align: center;
    margin: 30px auto;
    padding: 0 5px ;
    border-radius: 20px;
    
    
}

.searchbox{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* justify-content: space-around; */
    /* border: solid 2px bisque; */
    padding: 10px 10px;
    
    
    
} 
.btn{
   padding: 10px 15px;
      border-radius: 5px;
      border: none;
      background-color: #0288d1;
      font-size: 16px;
      cursor: pointer;
      color: white;
      &:hover {
      background-color: #0277bd;
    }
}

 .inp{
     padding: 10px;
      width: 50%;
      border-radius: 5px;
      border: none;
      font-size: 16px;
      direction: rtl;
      margin: 0 10px;

}
.weather_img{
width: 170px;
margin-top: 30px;
}

.temp{
font-size: 50px;
font-weight: 500px;
color: green;
}
.city{
   font-size: 40px;
font-weight: 400px;
margin-top: -10px;
}

.details{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 10px;
    margin-top: 60px;
    /* border:solid 2px black; */
}
.col{
    display: flex;
    align-items: center;
    text-align: center;
    
    >img{
        width: 40px;
        margin-right: 20px;
        margin-top: 30px;
    }
    
}

.humidity , .wind{
    font-size: 30px;
    margin-top: -5px;
    /* border:solid 2px black; */
}
.p{
        font-size: 30px;
        font-style: unset;
        color: rgb(183, 7, 7);
}

.weather{
    display: none;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1; 
}
/* ////////////////////////////////footer///////////////// */
.hossein {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hossein figure {
  position: fixed;
  bottom: 70px;
  right: 40px;
  text-align: center;
}

.hossein figure img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: 0.5s;
  cursor: pointer;
  
}

.hossein figure img:hover {
  border-radius: 15px;
  transform: scale(1.2);
}

.hossein figure figcaption {
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.948);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  transition: 0.5s;
  margin-top: 10px;
}

.hossein figure:hover figcaption {
  opacity: 1;
}




