body {
	min-height: 100vh;
	width: 100vw;
	margin: 0;
	background: linear-gradient(180deg, rgba(40, 107, 159, 1) 23%, rgba(50, 120, 162, 1) 51%, rgba(194, 226, 231, 1) 97%);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 6vh;
	padding: 25px 30px 25px 30px;
	color: white;
	background-color: #225A86;
}

#logo {
	width: 60px;
	margin-right: 25px;
}

#userIcon {
	width: 30px;
	margin-right: 15px;
	cursor: pointer;
}

h2 {
	font-weight: 100;
	opacity: 0.8;
}

#cityNameInput {
	width: 450px;
	height: 40px;
	border-radius: 30px;
	background-color: rgba(255, 255, 255, 0.3);
	color: white;
	border: none;
	padding-left: 25px;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input:focus {
	outline: 1px solid white;
}

::placeholder {
	color: white;
}

#addCity {
	border: none;
	background-color: transparent;
	color: white;
	cursor: pointer;
}

.headerDiv {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.divider {
	width: 1px;
	height: 30px;
	background-color: white;
}

#cityList {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100vw;
}

.cityContainer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 250px;
	margin: 30px;
	background-color: white;
	background-size: cover;
	border-radius: 20px;
}

.name {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	margin: 0;
	border-radius: 20px 20px 0px 00px;
	font-size: 24px;
}

.description {
	font-size: 18px;
	margin: 1;
}

.temperature {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 250px;
	font-size: 18px;
	color: #1A4DE4;
	font-weight: bold;
}

.deleteCity {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	background-color: #1A4DE4;
	margin: 15px;
	padding: 15px;
	border-radius: 40px;
	font-size: 20px;
	color: white;
	font-size: 14px;
	border: none;
	cursor: pointer;
	font-weight: bold;
}

.deleteCity:hover {
	opacity: 0.8;
}

#glass {
	width: 35px;
}

#glass:hover {
	opacity: 0.7;
}

.weatherIcon {
	width: 60px;
}

button {
	background-color: transparent;
	border: none;
}