*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg , #58c2ed, #21708f ) ;
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather-app {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    width: 350px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 15px;
    margin-bottom: 20px;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    width: 80%;
}

.search-box i {
    font-size: 18px;
    cursor: pointer;
}

.weather-info{
    margin-top: 35px;
}
.weather-info h1 {
    font-size: 60px;
    font-weight: 600;
}

.weather-info p {

    font-size: 18px;
    opacity: 0.9;
}

.weather-info i {
    margin-top: 10px;
    font-size: 80px;
}

.weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
  margin-top: 30px;
  text-align: center;
}

.weather-details div {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all ease 0.5s;
}

.weather-details div:hover {
    transform: scale(1.05);
    
}

.weather-details i {
  font-size: 28px;
  margin-bottom: 10px;
}

.weather-details p {
  font-size: 16px;
  font-weight: 500;
}