* {
	margin: 0px;
	padding: 0px;
}

html,
body {
	background-image: linear-gradient(
		100deg,
		#672a80,
		#554971,
		#63768d,
		#8ac6d0,
		#b8f3ff
	);
	background-repeat: no-repeat;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container {
	padding-top: 20px;
	padding-bottom: 6px;
	height: 100%;
	display: flex;

	margin-top: auto;
	margin-bottom: auto;

	flex-direction: column;
	justify-content: space-evenly;
	align-items: center
}

.content {
	flex: 1 0 auto;
	padding: 10px;

	width: 70%;
	margin: auto;
	text-align: center;
}

header {
	width: 100%;
	height: 70px;
	position: sticky;
	top: 0px;
	background-color: #282828;
	border-bottom: solid black 1px;
	box-shadow: rgba(0, 0, 0, 0.404) 0px 20px 10px,
		rgba(0, 0, 0, 0.404) 0px 10px 10px;
	z-index: 3;
	display: flex;
	align-items: center;
}

header h1 {
	flex: 1;
	text-align: center;
	color: white;
	font-family: Sora;
	font-size: 30px;
	margin: 0px;
	padding: 10px;
}

/* Right aligned button*/
#btnLocChange {
	position: absolute;
	right: 0px;
	background-color: #505050;
	color: white;
	border: solid white 1px;
	border-radius: 5px;
	padding: 10px 20px;
	font-family: Sora;
	font-size: 20px;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.404) 0px 20px 10px,
		rgba(0, 0, 0, 0.404) 0px 10px 10px;
	margin: 10px;
}

footer {
	text-align: center;
	color: white;
	background-color: #282828;
	border-top: solid black 1px;
	padding-top: 10px;
	padding-bottom: 10px;

	margin-top: auto;

	font-family: sora;
}

@font-face {
	font-family: "Sora";
	src: url(Sora-VariableFont_wght.ttf);
}

h1 {
	font-family: Sora;
	text-align: center;
	color: white;
	margin: 3px;
}

h2 {
	font-family: Sora;
	text-align: center;
	color: white;
	margin: 3px;
}

p {
	font-family: Sora;
	text-align: center;
	color: white;
	margin: 3px;
}

.popup{
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #282828;
	border-radius: 10px;
	padding: 20px;
	box-shadow: rgba(0, 0, 0, 0.404) 0px 20px 10px,
		rgba(0, 0, 0, 0.404) 0px 10px 10px;
	z-index: 1000;
}

.popup-content {
	text-align: center;
}

.popup h1 {
	color: white;
	margin-bottom: 10px;
	font-size: 60px;
}

.popup h2 {
	color: white;
	margin-bottom: 10px;
	font-size: 40px;
}

.dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#locationInput {
	padding: 10px;
	margin: 0px;
	border-radius: 5px;
	border: none;
	box-shadow: rgba(0, 0, 0, 0.404) 0px 20px 10px,
		rgba(0, 0, 0, 0.404) 0px 10px 10px;
	font-family: Sora;
	font-size: 20px;
	width: 70%;
}

#locationSuggestions{
  background-color: #f6f6f6;
  width: 70%;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 20000;
  
}

#locationSuggestions a{
	display: block;
	padding: 3px;
	font-size: large;
	text-align: left;
	text-decoration: none;
	color: black;
	font-family: Sora;
}

#locationSuggestions a:hover {
	background-color: #929292;
	
}

#weatherIcon {
	width: 100px;
	height: 100px;
	margin: 10px auto;
}

select {
	width: 70%;
	padding: 10px;
	border-radius: 5px;
	border: none;
	box-shadow: rgba(0, 0, 0, 0.404) 0px 20px 10px,
		rgba(0, 0, 0, 0.404) 0px 10px 10px;
	font-family: Sora;
	font-size: 20px;
	margin-bottom: 10px;
}