@import url('https://fonts.googleapis.com/css2?family=Aubrey&familer=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	box-sizing: border-box;
} 

/* header */

header{
	display: flex;
	padding: 10px;
	width: 100%;
	height: 100px;
	background-color: #0b9e2e;
	justify-content: center;
}

#logo {
	float: left;
}

#logo img {
	height: 75px;
}

nav {
	display: flex;
	float: left;
	margin: 10px;
}
nav ul {
	list-style: none;
}

nav ul li {
	float: left;
	padding: 20px;
}

nav ul li a{
	font-family: sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
} 

/* homepage */

.intro{
	font-family: sans-serif;
	margin-top: 25px;
	text-align: center;
}

.cta{
	justify-content: center;
	font-family: sans-serif;
	margin: auto;
	padding: 10px;
	max-height: 50px;
	max-width: 200px;
	margin-top: 30px;
	margin-bottom: 20px;
	background-color: #0b9e2e;
	border-radius: 5px;
	text-align: center;
}

.cta a{
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}

.cta:hover{
	background-color: #000000;
}

.scrollmenu {
	margin: auto;
	margin-top: 30px;
	max-width: 1200px;
  	overflow: auto;
  	white-space: nowrap;
  	border-style: solid;
  	border-color: #000000;
  	border-width: 10px;
  	background-color: #000000;
}

.locationimg {
  	display: inline-block;
  	max-width: 1200px;
	max-height: 562.5px;
}

/*navigation*/

.navigation{
	font-family: sans-serif;
	margin-top: 25px;
	text-align: center;
}

.dropdownmenu{
	margin-top: 30px;
	font-family: sans-serif;
	justify-items: center;
	font-weight: bold;
}

.dropdownmenu select{
	justify-content: center;
}

.locationinfo{
	display: flex;
	justify-content: center;
	flex-direction: row;
	margin-top: 30px;
}

.locationmap{
	display: inline-block;
  max-width: 950px;
	max-height: 500px;
	overflow: auto;
	border-style: solid;
	border-width: 10px;
	border-right-style: solid;
	border-right-width: 5px;
}

.locationdirections{
	border-style: solid;
	border-width: 10px;
	border-left-style: solid;
	border-left-width: 5px;
	background-color: #ffffff;
	color: #000000;
	width: 25%;
	padding: 20px;
	font-family: sans-serif;
}

.locationimage img{
	height: 225px;
}

/*account*/

.account{
	margin: auto;
	margin-top: 50px;
	padding: 10px;
	max-width: 500px;
	height: 500px;
	background-color: #0b9e2e;
	font-family: sans-serif;
	color: #ffffff;
	text-align: center;
}

.accountdetails{
	margin-top: 50px;
}

.accountlogin{
	justify-content: center;
	font-family: sans-serif;
	margin: auto;
	margin-top: 100px;
	max-height: 50px;
	max-width: 200px;
	padding: 10px;
	background-color: #ffffff;
	color: #000000;
	border-radius: 5px;
}

.accountlogin a{
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}

.accountlogin:hover{
	background-color: #000000;
}

.accountlogin a:hover{
	color: #ffffff;
}

label {display: block;}

input[type=text], select {
  width: 75%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* footer */

footer {
	display: flex;
	padding: 10px;
	margin-top: 50px;
	width: 100%;
	height: 100px;
	background-color: #0b9e2e;
	font-family: sans-serif;
	color: ffffff;
	justify-content: space-evenly;
	align-items: center;
}