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

body {
	background-color: #f7f7f7;
	font-family: Arial, sans-serif;
}

main {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px 20px;
	background-color: #fff;
	box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

h1 {
	margin-bottom: 20px;
	font-size: 36px;
	text-align: center;
	color: #333;
}

form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	color: #333;
}

input[type="text"], input[type="email"], textarea {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #f5f5f5;
	color: #333;
	resize: none;
}

textarea {
	height: 100px;
}

button[type="submit"] {
	padding: 10px 20px;
	font-size: 18px;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

button[type="submit"]:hover {
	background-color: #111;
}

button#locationBtn {
	padding: 10px 20px;
	font-size: 18px;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	background-color: #2ecc71;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
}

button#locationBtn:hover {
	background-color: #27ae60;
}

#locationDisplay {
	margin-top: 20px;
	font-size: 18px;
	color: #333;
}
button#location-button {
	background-color: #FFC107;
	border: none;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin-top: 20px;
	cursor: pointer;
  }
  