body{
    background-image: url(./assets/BackPic.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0;
    background-attachment: fixed;
    font-family: "Comfortaa","sans-serif";
    color: white;
}

.searchBar {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchBarParentDiv {
    width: 50%;
    height: fit-content;
    position: relative;
}
.inputField{
    outline: none;
}
.inputField{
    width: 100%;
    border-radius: 25px;
    padding: 10px;
}
.searchIcon {
    position: absolute;
    right: 10px;
    top: 7px;
}
.searchIcon:hover {
    cursor: pointer;
}
.mainContentParentDiv {
    height: 90vh;
    flex-direction: row;
}
.leftDiv {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.leftChild{
    background: rgb(212, 212, 212, 0.4);
    width: 85%;
    height: 40vh;
    margin: auto;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.currentTemp h6 {
    font-size: larger;
}
#cityName {
    font-size: xx-large;
}
#cityTemp {
    font-size: x-large;
}
#skyDesc {
    font-size: larger;
}
#comingFiveDaysTitle {
    font-size: x-large;
}
.rightDiv {
    width: 70%;
    height: 100%;
    gap: 20px;
}
.rightRow{
    height: 27vh;
    width: 100%;
}
.extraMetric {
    background: rgb(212, 212, 212, 0.4);
    padding: 5% 2%;
    width: fit-content;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    align-items: center;
}
.rowTwoDiv{
    background: rgb(212, 212, 212, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 45%;
    height: 80%;
}
.todayTemp {
    background: rgb(212, 212, 212, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: fit-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


@media only screen and (max-width:767px){
    .leftDiv{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    .rightDiv{
        width: 100%;
    }
    .mainContentParentDiv {
        height: 90vh;
        flex-direction: column;
    }
    .searchBar {
        width: 100%;
    }
    .searchBarParentDiv {
        width: 85%;
        height: fit-content;
        position: relative;
    }
    .rowOne{
        /* flex-direction: column; */
        flex-wrap: wrap;
        width: 85%;
        margin: auto;
        margin-top: 20px;
        gap: 20px;
    }
    .rowTwo{
        flex-direction: column;
        gap: 20px;
        height: 35vh;
        margin-top: 20px;
    }
    .rowTwoDiv{
        background: rgb(212, 212, 212, 0.4);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        width: 85%;
        height: 80%;
    }
    .rowThree {
        width: 85%;
        margin: auto;
        
    }
    .todayTempParentDiv {
        width: 100%;
        margin: auto;
        flex-wrap: wrap;
        gap: 20px;
    }
    
}