* {
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 2rem;
  margin: 0;
  font-size: 1.5rem;
  color: #000000;
  display: flex;
  flex-direction: column;
}

button,
select,
span.label {
  outline: 0;
  border: 0;
  font-size: 1rem;
  position: relative;
}

input.stack {
    position: relative;
}

#wave {
  width: 1000px;
  height: 150px;
  margin: 0 auto;
}

input[type="text"] {
  padding: 0.5rem;
  border-radius: 2px;
  outline: 0;
  border: 3px #eecbcb solid;
  font-style: bold;
}

select {
  border: 1px #dddddd solid;
  margin: 0 1rem;
}

button {
  background: #dddddd;
  transition: background 0.2s ease;
  border-radius: 2px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

button:hover {
  background: #69f0ae;
  cursor: pointer;
}

input {
  font-size: 1rem;
}

input:focus {
  outline: 0;
}

a {
  text-decoration: none;
  color: #444444;
}

#header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  justify-content: space-between;
}

#header a {
  font-weight: bold;
  font-size: 1.3rem;
}

.slidecontainer {
  width: 1000px; /* Width of the outside container */
  margin: 0 auto;
  text-align: center;
}

/* The slider itself */
.slider {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 50px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
  transition: opacity 0.2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 10px; /* Set a specific slider handle width */
  height: 50px; /* Slider handle height */
  background: #d42838; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 10x; /* Set a specific slider handle width */
  height: 50px; /* Slider handle height */
  background: #d42838; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

#board {
  width: 100%;
}

table.word {
  background-color: #cbfdb8;
  border-collapse: collapse;
  border-radius: 20px;
  box-shadow: 10px 10px 25px #000000;
  width: 32vw;
  height: 18vw;
  max-width: 270px;
  max-height: 480px;
  min-height: 180px;
  min-width: 320px;
  text-align: center;
  table-layout: fixed;
  overflow: hidden;
  font-size: 24px;
}
table.word tbody {
  vertical-align: top;
}
table.word th,
td {
  padding: 1em;
}
table.word td {
  width: 100px;
  line-height: 1.5em;
}
table.word th:nth-child(even),
table.word td:nth-child(even) {
  background: #f5e1b4;
}

#score {
  width: 100%;
  height: 100px;
  text-align: center;
  padding: 40px 0;
  font-size: 24px;
  font-weight: bold;
}

input[type="number"] {
  width: 50px;
  text-align: center;
  border-radius: 10px;
  font-size: 32px;
  font-style: bold;
  -moz-appearance: textfield;
  border: 1px #dddddd solid;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

div.scoreboard {
  background-color: #eecbcb;
	width: 500px;
	margin: 0 auto;
  text-align: center;
  border-collapse: collapse;
}
.divTable.scoreboard .divTableCell,
.divTable.scoreboard .divTableHead {
  border: 4px solid #aaaaaa;
  padding: 10px 2px;
}
.divTable.scoreboard .divTableBody .divTableCell {
  font-size: 20px;
  font-weight: bold;
}
.divTable.scoreboard .divTableCell:nth-child(even) {
  background: #d0e4f5;
}

/* DivTable.com */
.divTable {
  display: table;
}
.divTableRow {
  display: table-row;
}
.divTableHeading {
  display: table-header-group;
}
.divTableCell,
.divTableHead {
  display: table-cell;
}
.divTableHeading {
  display: table-header-group;
}
.divTableFoot {
  display: table-footer-group;
}
.divTableBody {
  display: table-row-group;
}

.seed-container {
  visibility: hidden;
}

.seed-container input {
  vertical-align: middle;
}
