@import url('https://fonts.googleapis.com/css2?family=Aubrey&familer=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@media screen and (max-width: 428px) {
	/* reset & global */
	.content{
		width: 100%;
		padding: 20px;
	}

* {
	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: right;
	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;
}

.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;
}

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;
}

/*navigation*/

.navigation{
	font-family: sans-serif;
	margin-top: 25px;
	text-align: center;
}

.locationinfo{
	display: flex;
	flex-direction: row;
}

.locationmap{
	display: inline-block;
  	max-width: 1000px;
	max-height: 250px;
	overflow: auto;
}

.dropdownmenu{
	margin-top: 37.5px;
	font-family: sans-serif;
	justify-items: center;
}

/*account*/

.accountlogin{
	margin: auto;
	margin-top: 50px;
	width: 500px;
	height: 500px;
	background-color: #0b9e2e;
	font-family: sans-serif;
	color: #ffffff;
}

.accountdetails{
	justify-content: center;
}

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;
}