*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(233, 183, 255),rgb(13, 0, 33));
}
.tlt{
    color: rgb(13, 0, 101);
    margin-bottom: 20px;
    text-align: center;
    align-items: center;
    justify-content:center;
    display: flex;
    transition: 0.5s;
    font-family: Arial, Helvetica, sans-serif;
}
.tlt img{
    width:50px;
    margin-left:10px;
}

.container{
    width: 400px;
    height: min-content;
    color: rgb(255, 255, 255);
    background-color: white;
    border-radius: 12px;
    padding: 28px;

}
.search-box{
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    

}
.search-box input{
    width: 84%;
    font-size: 20px;
    font-family: 'Courier New', Courier;
    text-transform: capitalize;
    font-weight: 600;
    background: linear-gradient(120deg,rgb(7, 1, 38),rgb(42, 5, 176));
    color: rgb(254, 255, 255);
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 5px 5px 5px rgb(0, 136, 255);
}
.search-box input::placeholder{
    font-family: 'Courier New', Courier;
    font-weight: 600;
    color: white;
    /* color: linear-gradient(120deg,rgb(7, 1, 38),rgb(42, 5, 176)); */
}
.search-box button{
    width: 46px;
    height: 46px;
    background-color: rgb(255, 255, 255);
    color:rgb(1, 1, 70);
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;

}
.search-box button:hover{
    color: rgb(225, 225, 255);
    background-color: rgb(1, 1, 70);
    font-size: 30px;
}

.weather-body img{
    width: 60%;
}
.weather-body{
    display:none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 20px;

}

.weather-box{
    margin-block: 20px;
    text-align: center;
    color: rgb(44, 0, 177);
}
.weather-box .temperature{
    font-size: 40px;
    font-weight: 800;
    position: relative;

}
.weather-body .description{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;

}
.weather-details{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;   
}
.humidity, .wind{
    display: flex;
    align-items: center;
    color: rgb(44, 0, 177);

}
.humidity{
    margin-left: 20px;

}
.wind{
    margin-right: 20px;
}
.weather-details i{
    font-size: 36px;

}
.weather-details .text{
    margin-left: 10px;
    font-size: 16px;
}

.text span{
    font-size: 20px;
    font-weight: 600;
}

.location-not-found{
    margin-top: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.location-not-found h1{
    font-size: 20px;
    color: #6b6b6b;
    margin-block-end: 15px;
}
.location-not-found img{
    width: 80%;
}
.get-loc div{
    font-family: 'Courier New', Courier;
    font-weight: 600;
    margin-top: 20px;
    width: 84%;
    font-size: 20px;
    text-transform: capitalize;
    color: rgb(189, 244, 255);
    background: linear-gradient(120deg,rgb(7, 1, 38),rgb(42, 5, 176));
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgb(0, 136, 255);
    text-align: center;
    
}
.get-loc div:hover,.search-box input:hover{
    background: linear-gradient(120deg,rgb(42, 5, 176),rgb(7, 1, 38));
    box-shadow: 5px 5px 10px rgb(146, 122, 250);
}
.get-loc{
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.get-loc button{
    width: 46px;
    height: 46px;
    background-color: rgb(255, 255, 255);
    color:rgb(1, 1, 70);
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
}
.get-loc button:hover{
    color: rgb(225, 225, 255);
    background-color: rgb(1, 1, 70);
    font-size: 30px;
}