/* Robowisdom: Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Merriweather';
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  font-size: 25px;
}

p, label {
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 40px;
}

button {
  color: white;
  margin-bottom: 20px;
  padding: 8px 12px;
  /* transition: background-color 0.3s; getting this to work is too hard w/ dynamic*/
  cursor: pointer;
  background-color: #037dd6;
  border-radius: 10px;
  border-color: pink;
  border-width: medium;
  font-size: 25px;
}

button:disabled {
  background-color: #b3b3b3;
  border-color: black;
}

div {
  text-align: center;
}

a:link {
  color: LightBlue;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

.buttongrid {
  display: grid;
  /* box-sizing: */
  justify-content: center;
  grid-template-rows: 80px 80px;
  grid-template-columns: 300px 300px;
  grid-row-gap: 5px;
  grid-column-gap: 8%;
}
