@import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&display=swap');

*{
    font-family: "Lexend Giga", serif;
    
}
.main {
    /* width: auto;
	height:auto; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

#bgChange {
    margin: auto;
    background-image: url("../images/backgrounds/clear.jpg");
    /* background-size: 100vw; */
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: absolute;
}



.weatherapp {
    width: 50vw;
    max-height: 50vh;
    border-radius: 37px;
    box-shadow: 10px 10px 50px #888888;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: row;

}


.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border-radius: 37px 0 0 37px; */
    background: #262626;
    box-shadow: inset 36px -36px 100px #0f0f0f,
            inset -36px 36px 100px #3d3d3d;
    padding: 0;
    width: 50%;
    color: white;
    overflow: hidden;
    
}



.right {
    /* float: right; */
    width: 50%;
    height: 100%;
    color: #fff;
    text-shadow: #143149 7px 0 30px;;
}
.temperature {
    /* margin-top: 5vh; */
    /* margin-bottom: 5px; */
    font-size: 6rem;
    font-weight: bold;
    width: 100%;
}

.location {
    font-size: 18px;
    width: 100%;
}


.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    width: 100%;
    margin: auto;
    background: rgba(18, 51, 67, 0.35);
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); */
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

}

.top img {
    margin-top: 15px;
}

.bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:50%;
    font-weight: bold;
    background: rgba(177, 177, 177, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.wind{
    padding-bottom: 2rem;
}

.humidity {
    padding: 8px;
}

#meaning {
    color: white;
}



#icon {
    width: 30%;
    /* height: 50px; */
}

#demo01 {
    margin-top: 1rem;
    color: white;
    border-radius: 20px;
background: #337ab7;
box-shadow: inset 18px -18px 67px #143149,
            inset -18px 18px 67px #52c3ff;
            border: none;
}

.mod1 {
    background-image: url("../images/backgrounds/modalbg.jpg");
    /* Photo by Arto Marttinen*/
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.modal-content1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100vh;
    background-color: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 6px;
    outline: 0;
    opacity: 0.6;
}




#userInput {
    background: white;
    color: black;
    height: 80px;
    font-size: 50px;
    font-family: "Lucida Grande";
    opacity: 0.9;
    text-align: center;


}


@media only screen and (min-width: 640px) {
    #bgChange {
        background-size: cover;
    }
   
}

/* @media only screen and (min-width: 940px){
    #bgChange{
        background-size: 150vw;
    }
  } */


/* @media only screen and (min-width: 1280px){
    #bgChange{
        background-size: 100vw;
    }
  } */