.weather-app {
	background: white;
	max-width: 600px;
	margin: 45px auto;
	box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
	border-radius: 16px;
	padding: 20px;
}

.search-form-input {
	background-color: #f9f7fe;
	border: none;
	border-radius: 6px;
	width: 77%;
	font-family: Geologica;
	font-size: 16px;
	padding: 15px 20px;
}

.search-form-input::placeholder {
	color: #5900b3;
	margin-left: 40px;
}

.search-form-button {
	background: #5900b3;
	padding: 15px 30px;
	border: none;
	font-family: Geologica;
	font-size: 15px;
	margin-left: 5px;
	border-radius: 6px;
	color: white;
}

.weather-app-city {
	margin-left: 26px;
	font-size: 38px;
	font-weight: 400;
	line-height: 40px;
}

.weather-app-data {
	display: flex;
	justify-content: space-between;
}

.day-and-time {
	font-family: Geologica;
	font-size: 20px;
	font-weight: 200;
	color: #5900b3;
	margin-left: 26px;
}

.humidity {
	font-family: Geologica;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	color: #5900b3;
	margin-left: 26px;
}

.humidity-value {
	font-family: Geologica;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	color: #a64dff;
}
.wind-speed {
	font-family: Geologica;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	color: #5900b3;
	margin-left: 26px;
}

.wind-speed-value {
	font-family: Geologica;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	color: #a64dff;
}

.description {
	font-family: Geologica;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	color: #a64dff;
}

.conditions {
	font-family: Geologica;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	margin-left: 26px;
	color: #5900b3;
}

.weather-app-temp-container {
	display: flex;
	line-height: 40px;
}

.weather-app-temperature {
	font-family: Geologica;
	color: #5900b3;
	font-size: 88px;
	margin-left: 5px;

	font-weight: bold;
	line-height: 100px;
}

.weather-app-icon {
	height: 88px;
	width: 88px;
	margin-right: 0px;
}

.weather-app-unit {
	font-family: Geologica;
	color: #5900b3;
	margin-top: 15px;
	margin-right: 30px;
	font-size: 28px;
}

.weather-outlook {
	display: flex;
	width: 600px;
	justify-content: space-around;
	text-align: center;
	margin-top: 30px 0;
	padding-bottom: 50px;
}

.weather-outlook img {
	height: 88px;
	width: 88px;
}

.daily-temperatures {
	font-family: Geologica;
	text-align: center;
	display: flex;
	color: #5900b3;
	margin-top: 10px;
	justify-content: center;
}

.daily-temperature {
	padding: 0 10px;
}

.forecast-weekday {
	font-family: Geologica;
	font-weight: 500;
	color: #5900b3;
}

.forecast-icon {
	width: 88px;
	height: 88px;
	display: block;
	margin: 0 auto;
}

h1 {
	color: #5900b3;
	font-family: Geologica;
	margin-left: 30px;
}

h2 {
	color: #5900b3;
	font-family: Geologica;
	font-weight: 500;
	text-align: center;
}

a {
	color: #5900b3;
	font-weight: 500;
}

header {
	border-bottom: 1px solid #f9f7fe;
	padding: 0 0 30px 0;
}

footer {
	border-top: 1px solid #f9f7fe;
	padding: 30px 0 0 0;
	text-align: center;
	font-family: Geologica;
	font-size: 13px;
	font-weight: 200;
	color: #a64dff;
}

main {
	padding: 30px 0;
}
