* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #00416a; 
    background: -webkit-linear-gradient(to right, #00416a, #e4e5e6); 
    background: linear-gradient(to right, #00416a, #e4e5e6); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.weather-app {
    text-align: center;
}

.weather-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: white;
    width: 350px;
    max-height: 650px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.city {
    font-size: 2rem;
    margin-bottom: 18px;
}

.temp {
    font-size: 3.5rem;
    margin: 10px 0;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.details{
    display: flex;
    justify-content: space-around;
}

.details p {
    font-size: 1rem;
    font-weight: 550;
    margin: 5px 0;

}
.search{
    padding: 9px 20px;
    border: 0;
    border-radius: 5px;
}
input:focus{
    border: 1px solid #00416a;
}
.btn{
    padding: 8.8px;
    border: .1px;
    border-radius: 6px;
}
.btn:hover{
    background-color: rgba(54, 122, 189, 0.447);
}
.hide{
    display: none;
}

.icon {
    margin-top: 28px;
}
.icon {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease-in-out;
}

.icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.temp {
    animation: tempChange 0.5s ease-in-out;
}

@keyframes tempChange {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.weather-app {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.detail_box{
    display: flex;
    align-items: center;
    gap: 10px;
}

#humid{
    width: 44px;
    height: 44px;
    margin: 0;
}
.detail_content{
    display: flex;
    flex-direction: column;
    gap: 0;
}