*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:"Rowdies", sans-serif;
}

body{
	background:url(./images/weatherback.jpeg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.container{
	width: 90%;
	max-width: 470px;
	background: linear-gradient(#e66465, #9198e5);
	margin: 20px auto 0;
	color: white;
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	gap: 3px;
}
.searchBox{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.searchBox input{
	width:85%;
	padding:10px 20px;
	border-radius: 10px;
	border: 0;
	outline: 0;
}
.searchicon{
	border: 0;
	outline: 0;
	width: 10%;
	text-align: center;
	padding:8px;
	border-radius: 50%;
	cursor: pointer;
}
.weather-icon{
	width: 160px;
	margin-top: 30px 	;
}
.weather-img h1{
	font-size: 80px;
	font-weight: 500;
}
.weather-img h2{
	font-size: 45px;
	font-weight: 300;
	margin-top: -10px;
}
.details{
	margin-top: 70px;
	padding: 0 20px;
	display: flex;
	justify-content: space-evenly;
}
.col{
	gap: 5px;
	display: flex;
	justify-content:space-around;
	align-items: center;
}
.col img{
	width: 40px;
	margin-right:10px;
}
.humidity,.wind{
	font-size: 25px;
	margin-top: -6px;
}
@media screen and (max-width:600px) {
	.searchicon{
		width: 14%;
	}
	
}