html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

ol,
ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

* {
	box-sizing: border-box;
}

.game {
  box-sizing: border-box;
  width: 100vw;
  max-width: 360px;
  margin: 0 auto;
  font-family: arial;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game__top {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  flex-direction: row;
}

.game__topleft {
  flex: 0 0 auto;
}

.game__topright {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.game__paragraph {
  /* in a flex column, vertical margins do not collapse! */
  margin-bottom: 10px;
  flex: 0 0 auto;
}

.game__paragraph:last-child {
  margin-bottom: 0;
}

.game__replay-out {
  background-color: rgba(189, 189, 189, .3);
  width: 100%;
  padding: 8px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game__button {
  border: 0;
  height: 48px;
  width: 100%;
  font-size: 1em; /* avoid shrinkage */
  font-family: inherit;
  padding: .5rem .75rem;
  background-color: rgb(16, 82, 225);
  color: white;
  cursor: pointer;
  line-height: 1rem;
}

.game__button:hover {
  background-color: rgb(5, 52, 185);
}

.game__button:active {
  background-color: red;
}

.game__button[disabled] {
  background-color: grey;
  cursor: default;
}

:focus {
  outline: 2px solid black;
}

.game__spacer {
  flex: 1 1 auto;
}

.game__bottom {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.well__cell {
  width: 20px;
  height: 20px;
  color: white;
  background-color: black;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.well__cell--bar {
  border-top: 1px solid red;
}

.well__cell--landed {
  background-color: rgb(0,162,232);
}

.well__cell--live {
  background-color: red;
}


/*# sourceMappingURL=bundle.css.map*/