* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	color: rgb(221, 221, 221);
	background: url('https://www.metoffice.gov.uk/binaries/content/gallery/metofficegovuk/hero-images/advice/industry/weather-forecast-background.jpg');
	background-size: cover;
	font-size: 16px;
}

h1 {
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
	color: #e0e0ee;
}

input {
	font-size: 16px;
	padding: 5px 10px;
	margin-top: 10px;
	background: none;
	border: none;
	color: #fff;
	border-bottom: 2px solid #ddd;
}

input::placeholder {
	color: #ddd;
	font-family: 'Montserrat', sans-serif;
}

button {
	padding: 10px;
	width: 100px;
	margin-left: 70px;
	margin-top: 20px;
	color: #fff;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

button:hover {
	color: #333;
	background-color: #ddd;
}

.findBtn {
	background-color: #8ba061;
	margin-left: 100px;
}
.map-link {
	/* display: none; to schowamy */
	text-align: center;
}

.wrapper {
	width: 800px;
	/* padding: 5px 10px; */
	background-color: rgba(0, 0, 0, 0.85);
	border-radius: 25px;
}

.top {
	height: 260px;
}

.bottom {
	height: 140px;
}

.main-info {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 200px;
}

.city-name {
	padding-left: 10px;
	font-size: 40px;
}

.headings,
.weather-info {
	display: flex;
	align-items: center;
}

.headings p,
.weather-info p {
	width: 33.3%;
	text-align: center;
}

.headings {
	height: 35%;
	text-transform: uppercase;
	font-weight: bold;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.weather-info {
	height: 65%;
	font-size: 26px;
}

.photo {
	width: 140px;
	height: 140px;
	object-fit: contain;
}

.warning {
	margin-top: 10px;
	margin-left: 10px;
	font-size: 14px;
	color: tomato;
}

@media (min-width: 576px) {
	body {
		font-size: 20px;
	}

	.wrapper {
		padding: 20px 40px;
	}
	button {
		padding: 10px;
		margin-left: 20px;
	}
	.city-name {
		padding: 10px;
		font-size: 40px;
	}
	.warning {
		margin-top: 10px;
		font-size: 14px;
		color: tomato;
	}
}
