*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;

}

body{
    background: url('assets/bg.jpg');
    width: 100%;
    height: 100dvh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::before
{
    content: "" ;
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: rgba(48, 129, 235, 0.2);
    backdrop-filter: blur(20px);

}

.main-container
{
    width: 300px;
    height: 496px;
    z-index: 1;
    background: linear-gradient(to top , rgb(0,0,0,0.15),#3A6D8C);
    border-radius: 12px;
    backdrop-filter: blur(100px);
    padding: 20px;

}

.input-container
{
    position: relative;
    margin-bottom: 25px;
}

.city-input
{
    width: 100%;
    padding: 10px 16px;
    border-radius: 99px;
    border: 3px solid transparent;
    background: rgb(0,0,0,0.15);
    outline: none;
    font-weight: 500;
    transition: 0.25s border;
    padding-right: 45px;
}

.city-input:focus
{
  border: 3px solid rgb(0,0,0,0.15);

}

.city-input::placeholder
{
    color: rgb(255,255,255,0.75);
}

.search-btn
{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background:none;
    display: flex;
    border: none;
    cursor: pointer;

}

.weather-info
{
display: flex;
flex-direction: column;
gap: 25px;
}

.location-date-container
{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.location
{
display: flex;
align-items: center;
gap: 6px;

}

.country-txt
{
    transform: translateX(50px);
    font-size: 25px;
    align-items: center;
}


.weather-summary-container
{
    display: flex;
    align-items: center;
}

.temp-txt
{
    
   
     position:absolute;
     bottom: 110px;
     left: calc(50% - 30px);
     color: #f9fdff;
     font-size: 30px;
     font-weight: 800;
     padding-top: 15px;
    
}

.condition-txt 
{
    position: absolute;
     bottom: 150px;
     left: calc(50% - 36px);
     font-size: 25px;
}
.weather-summary-img
{
    width: 230x;
    height: 230px;

}

.weather-summary-info
{
    text-align: end;

}

.weather-conditions-container
{
    
    font-size: 18px;
    transform: translateY(60px);
    display: flex;
    justify-content: space-between;
}

.condition-item
{
    display: flex;
    align-items: center;
    gap: 6px;
}

.condition-item span
{
    font-size: 30px;

}


.forecast-item-img
{
    width: 35px;
    height: 35px;

}

.section-message
{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-top: 25%;

}

.section-message img
{
    height: 180px;
    width: fit-content;
}