*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 100%;
    height: 100vh;
    background-image: url('../Image/background.jpg');
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color:cornflowerblue; */
   
}
.app-main {
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    /* background-color: #fff; */
    background: #000000d0;
    color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    /* border: 1px solid red; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* flex-direction: column; */
    text-align: center;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.app-main:hover {
    cursor:pointer;
}
.search-input-box {
    width: 100%;
    background-color:#fff;
    padding: 15px;
    border-radius: 5px;
    transform: translateZ(20px)
}
.search-input-box input {
    width: 100%;
    outline: none;
    border: none;
    font-size: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.weather-body {
    width: 100%;
    margin-top: 25px;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 40px 20px;
    transform: translateZ(30px)
}

.weather-status {
    margin-top: 30px;
}
.temp {
    font-size: 60px;
    /* text-shadow: 03px 3px 0 blue; */
}


/* --------------------media query start ------------- */
@media (max-width: 770px){
    .app-main{
        width: 70%;
    }
}
@media (max-width: 450px){
    .app-main{
        width: 90%;
    }
}