body{
  font-family: Lato;
  margin : 0;
  background-size: cover ;
  background-image: url("https://ik.imagekit.io/shivam/mountain_nimH300hLK.jpg"); 
  /* overflow: hidden; */
  background-attachment : fixed; 
  color: white;
  
}

header {
  position: absolute;
  top:0px;
  height: 6%;
  width:calc(100% - 10px);
  padding : 5px;
  background:rgba(0, 0, 0, 0.2);
}

h3{
	position: absolute;
  top:0px;
  height: 6%;
}



main{
  position: absolute;
  top:6%;
  width:calc(100% - 20px);
  height : calc(100vh - 6%);
  padding : 10px;
  font-size :2.7vmin;

}

@media only screen and (orientation: portrait){
	header{
		height : 4%;
	}
	h3{
		font-size : 3vmin;
	}
	main{
		top:4%;
		height : calc(100vh - 4%);
	}
	
}

.input {
  text-align: center;
}

input[type=text]{
  border : 2px solid #4FC3F7;
  height : 3.7%;
  width: 80vmin;
  font-size:2.7vmin;
  transition: height 0.5s , width 0.5s ease-in-out;
  padding: 0px;
  margin: 0px;
}

@media only screen and ( orientation : landscape ) {
	input[type=text]:hover{
	  height : 3.7%;
	  width : 85vmin;
	}
	input[type=text]:focus{
	  height : 3.7%;
	  width : 85vmin;
	}
}

button {
  height : 3.7%;
  width : 15vmin;
  font-size :2.7vmin;
  background-color: #4FC3F7;
  cursor: pointer;
  border: 2px solid #4FC3F7;
  padding: 0px;
  margin: 0px;
}

button :hover {
  height : 3.7%;
  width : 17vmin;
}

.warning {
  color : white;
}


  

#headngWeather{
  color: #white;
  border-top : 3px solid white;
  border-bottom: 3px solid white;
  margin : 0px;
  background:rgba(0, 0, 0, 0.2);
}
.main {
  display : flex;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: 15px;
  flex-wrap: wrap;
  //flex-basis:243px;
  margin:5px;
  
}
.mainDiv{
  display : flex;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: 15px;
  flex-wrap: wrap;
  //flex-basis:243px;
  margin:5px;
  padding: 5px;
  color: white;
  transition: background-color 1s , color 1s ease-in-out;
  background:rgba(0, 0, 0, 0.2);
  
}

.mainDiv:hover{
  background-color : white;
  color : #4A148C;

}

.subDiv {
  /* min-height: 243px; */
  padding: 10px;
  transition: background-color 1s , color 1s ease-in-out;
  background:rgba(0, 0, 0, 0.2);
  color: white;
  margin : 5px;
}
.subDiv:hover{
  background-color : white;
  color : #4A148C;

}