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

body{
    background: #222;
}

.container{
    width: 90%;
    max-width: 420px;
    background: linear-gradient(135deg,#00feba,#5b548a);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
    padding-bottom: 20px;
}

.search{
    background: #fff;
    width: 80%;
    margin: 20px auto;
    display: flex;
    border-radius: 10px;
}

.search input{
    width: 85%;
    height: 45px;
    border: none;
    outline: none;
    padding-left: 15px;
    font-size: 1rem;
}

.search button{
    width: 15%;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
}

.images{
    display: flex;
    justify-content: center;
}

.images img{
    width: 140px;
}

.temp, .city{
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
}

.other-details{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.other-details img{
    width: 35px;
}

.other-details h3,
.other-details p{
    color: #fff;
}

@media(max-width:480px){
    .other-details{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
