*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Manrope', sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(resources/day.jpg);
    background-size: cover;
    background-position: top center;
    
}

.container{
    margin: 2%;
    width: 480px;
    height: min-content;
    background-color: rgba(0,0,0,0.7);
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(rgba(0,0,0,0,0.7),rgba(0,0,0,1));
}

.search-box{
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.search-box input{
    width: 85%;
    text-transform: capitalize;
    color: rgba(255,255,255,1);
    font-size: 17px;
    font-weight: 500;
    background-color: rgba(0,0,0,0.3);
    border: none;
    padding: 12px 16px;
    border-radius: 14px;
    /* box-shadow:0px 0px 5px rgba(0,0,0); */
}

.search-box input::placeholder{
    color:rgba(72,72,72,1);
    font-weight: 500;
}

.search-box button{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    color: rgb(232, 108, 7);
    background-color: rgba(0,0,0,0.4);
    cursor: pointer;
    font-size: 20px;
    margin-left: 3%;
}

.search-box button:hover{
    color: rgb(255,255,255);
    background-color: rgba(0,0,0,0);
}

.weather-body{
    display: none;
    justify-content: center;
    align-items: left;
    flex-direction: column;
}

.city{
    color: white;
    font-size: 30px;
    margin-top: 3%;
    font-weight: 600;
}

.temperature{
    color: rgb(232, 108, 7);
    font-size: 60px;
    margin-top: 3%;
    font-weight: 600;
    position: relative;
}
.weather{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.weather-image{
    width:14%;
}

.status{
    color: white;
    /* display: inline-block; */
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    margin-top: 0%;
    margin-left: 3%;
}

.description-2{
    color:rgb(185, 185, 185);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}
.error{
    display: none;
    text-align: center;
}
.location-not-found{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    /* width: 0%; */
}

.location-not-found h1{
    color: rgb(232, 108, 7);
    font-size: 20px;
    margin-block-end: 15px;
}

.location-not-found img{
    width: 80%;
    /* background-color: rgb(232, 108, 7); */
}
.author{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5%;
    padding: 2%;
}
.app-name{
    color: rgb(232, 108, 7);
    margin-right: 4%;
    font-weight: 600;
    font-size: 20px;
}
.author-name{
    color: rgb(150, 150, 150);
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    display: none;
}

.git-hub{
    color:white;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    /* display:none; */
}
.git-hub:hover{
    color: rgb(232, 108, 7) ;
}

.description-div{
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* border: 2px solid rgb(232, 108, 7) ; */
    padding: 10px;
    display: flex;
    flex-direction: column;

    
}

.high , .low{
    font-size: 1em;
    
}
