* {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16;
	color: white;
	margin: 0;
	padding: 0;
}
body {
	background: url(./images/background.jpg) no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container {
	background: rgb(0 0 0 / 60%);
	padding: 20px;
	border-radius: 10px;
	position: relative;
	top: 150px;
}

.search {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.search #searchinput {
	padding: 12px 10px 10px 15px;
	width: 250px;
	border-radius: 20px;
	background: rgb(255 255 255 / 50%);
	border: none;
	color: white;
	box-shadow: none;
	font-weight: 600;
}

.search #searchinput::placeholder {
	color: white;
	font-weight: 600;
}
.search #searchbtn {
	padding: 20px;
	border-radius: 50%;
	border: none;
	color: white;
	background: url(./images/search.png) no-repeat center / 20px rgb(255 255 255 / 50%);
}

.weather-info {
	display: none;
}
#undefined {
	display: none;
	margin-top: 10px;
}

.info {
	margin-top: 20px;
}
.info #city {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}
.info #degree {
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 600;
}

.condition {
	display: flex;
	align-items: center;
	gap: 5px;
}

.condition #weather-condition {
	font-size: 14px;
}

/* When the size of the screen is 600px or less the following style will be applied */
@media screen and (max-width: 600px) {
	.container {
		top: 0px;
		margin: 20px;
	}
	.search #searchinput {
		width: 140px;
		font-size: 10px;
	}

	.search #searchbtn {
		padding: 18px;
	}
	
	.info #city {
		font-size: 14px;
	}
	.condition img {
		width: 20px;
		height: 20px;
	}
	
	#humidity, #windSpeed {
		font-size: 14px;
	}
}