@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&family=Overpass:wght@300&family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0px;
    padding: 0px;
}

body{
    background-image: url(task_03_Media/wallpaper.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.navbar{
    margin-top: 10px;
    overflow: hidden;
    position: sticky;
    filter: drop-shadow(0 0 10px #060606);
}

#nav_container1{
    gap: 60px;
}

#nav_ul{
    gap: 50px;
}


#nav_text{
    color: white;
    font-size:large;
}

#nav_text:hover{
    width:max-content;
    background-color: #06060600;
    border-radius: 18px;
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 3px rgba(32, 32, 32, 0.947),
    -1px -1px 3px rgba(32, 32, 32, 0.947);
    color: #000000;
    transform: scale(1.1);
}


#mail_logo:hover{
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px #ffffff);
}

/* end of nav bar section  --------------------------------------------------------------------------*/ 
.search_input{
  display: flex;
  margin: 20px auto 20px;
  justify-content: center;
  gap: 8px;
}

.input {
    width: 100%;
    max-width: 220px;
    height: 45px;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
  }
  
  .input:hover {
    border: 2px solid lightgrey;
    box-shadow: 0px 0px 20px -17px;
  }
  
  .input:active {
    transform: scale(0.95);
  }
  
  .input:focus {
    border: 2px solid grey;
  }

  .search_btn {
    padding: 9px 23px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.5s ease;
  }
  
  .search_btn:hover {
    letter-spacing: 3px;
    background-color: hsl(261deg 80% 48%);
    color: hsl(0, 0%, 100%);
    box-shadow: rgb(93 24 220) 0px 7px 29px 0px;
  }
  
  .search_btn:active {
    letter-spacing: 3px;
    background-color: hsl(261deg 80% 48%);
    color: hsl(0, 0%, 100%);
    box-shadow: rgb(93 24 220) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
  }
  

/* end of input search section  --------------------------------------------------------------------------*/ 


.cityname_temp{
  margin: 10px auto 10px;
  width: 360px;
  height: 117px;
  background-color: rgba(0,0,0,0.573);
  border-radius: 16px;
}

.cityname_temp p{
  margin-top: 10px;
  padding-top: 5px;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  color: #ffffff;
}

.tempLogo_temp{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  font-size: 32px;
}


.minimum_temp{
  margin: 30px auto 10px;
  width: 169px;
  height: 87px;
  background-color: rgba(0,0,0,0.573);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sp{
  margin: 0 8px 0;
  color: white;
  font-weight: 600;
  font-size: 24px;
}

.sp_temp{
  font-size: 28px;
  font-weight: 600;
}


.remaining_details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 50px 10px;
}