*{
    margin: 0rem;
    padding: 0rem;
    box-sizing: border-box;
}

body{
    background-color: lightblue;
}

.alert{
    visibility: hidden;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding: .5rem;
    width: 30%;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border-radius: 1rem;
    border: .05rem solid #ffffff;
}
@media (max-width: 686px){
    .alert{
        width: 80%;
    }
}

.weatherReport{
    visibility: hidden;
    width: 100%;
    position:fixed;
    top: 1rem;
    padding: 0rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0rem;
}

.heading i{
    margin-top: .4rem;
    margin-right: .2rem;
    width: 1rem;
    height: 1rem;
}

.weatherPart{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.weatherPart img{
    width: 10rem;
    height: 10rem;
}

.num{
    font-size: 2rem;
}

.deg{
    font-size: 1.5rem;
    position: relative;
    left: 1.5rem;
}

.celcious{
    font-size: 1.5rem;
}

.weather{
    font-size: 2rem;
    margin: .3rem;
}

.location{
    font-size: 1rem;
    display: flex;
}

.otherDetails{
    display: flex;
    margin: 1.5rem;
    padding: 0rem 1rem;
}
@media (max-width: 686px){
    .otherDetails{
        width: 97%;
        justify-content: center;
        
    }
    .column{
        width: 100%;
        flex-direction: column;
    }
    .icon{
        display: none;
    }
    .details p{
        color: black;
    }
}

.column{
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: .5rem;
}

.details{
    display: flex;
    position: relative;
    left: .6rem;
    flex-direction: column;
    color: #ffffff;
}

.column p{
    font-size: 1rem;
}

.temp{
    display: flex;
    margin-right: 1rem;
}

.feels{
    border-right: 1px double white;
    display: flex;
}

.humidity{
    border-right:1px solid white ;
    display: flex;
    padding: 0rem 1rem;
}

.wind{
    display: flex;
}

box-icon{
    width: 2rem;
}

.search{
    position: relative;
    width: 20rem;
    background-color: rgb(61, 203, 203);
    box-shadow: 1px 1px 9px #ffffff;
    border-radius: 1rem;
    border: 1px solid #ffffff;
    margin: 2rem 0rem;
    padding: .5rem;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
}

.heading{
    border-bottom: .1rem solid #ffffff;
    padding: 1rem;
    display: flex;
    color: #ffffff;
}

.searchBox{
    padding: 1rem;
}

.searchBox input{
    height: 2.3rem;
    width: 15rem;
    border-radius: 1rem;
    border: none;
    padding: 1rem;
    color: black;
    margin: 0rem 0rem .5rem 1rem;
}

span{
    position: relative;
    left: 45%;
    transform: translateX(-50%);
    color: #ffffff;
}

.searchBox button{
    width: 15rem;
    height: 2.3rem;
    border-radius: 1rem;
    background-color: aquamarine;
    box-shadow: 1.2px 1.2px 9px #ffffff;
    border: .5px solid white;
    color: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    margin-top: .5rem;
    font-size: 1.2rem;
}

.colors{
    width: 20rem;
    border-radius: 1.5rem;
    background-color: transparent;
    border: .1rem solid #ffffff;
    padding: .5rem;
    margin: 2rem 0rem;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%);
    display: flex;
}

.color{
    height: 1.5rem;
    width: 1.5rem;
    background-color: #ffffff;
    border: .05rem solid #ffffff;
    position: relative;
    margin: .2rem;
    border-radius: 50%;
}

.footer{
    position: absolute;
    bottom: 0rem;
    width: 100%;
    padding: 1rem;
    color: #ffffff;
    border-top: .2rem solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}