*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
}
.main{
    display: flex;
}
.left{
    width: 100vw;
    height: 100vh;
    background-color: #1E213A;
}
.topleft{
    height: 12vh;  
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.searchBox {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2f3640;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.searchBox:hover .searchInput {
    width: 250px;
}

.searchButton {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2f3640;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.searchInput {
    border: none;
    background: none;
    outline: none;
    padding: 0 0 0 0.7rem;
    color: white;
    font-size: 16px;
    transition: 0.4s;
    width: 0px;
}

.searchicon {
    height: 2rem;
    width: 2rem;
}
.showweather{
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clouds{
    height: 7rem;
    width: 7rem;
}
.currentlocation{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-weight: bold;
}
.temp{
    font-size: 2.7rem;
    color:white;
}
.f1{
    font-size: 2rem;
}
.cent{
    font-weight: bold;
}
.weathertype{
    color: #A09FB1;
}
.current{
    font-size: 0.7rem;
    word-spacing: 0.2rem;
    color: #A09FB1;
}
.location{
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}
.maplocation{
    height: 0.8rem;
    width: 0.8rem;  
}