* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  line-height: 1.4;
  word-break: break-word;
}

x-app {
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
	position: relative;
	width: 100%;
	height: 100%;
	justify-content: space-around;
	align-items: center;
	text-align: center;
}

@media (min-width: 480px) {
	x-app {
		flex-direction: row;
	}
}

#tide, #current {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#stations {
	padding: 32px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, auto));
	gap: 16px;
}

iframe {
	border: none;
	box-shadow: 0px 7.5px 15px 0px rgba(0, 0, 0, 0.35);
}

.hidden {
  display: none !important;
}
