
      body {

        background: #303646;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

      }

      h1 {

        color: white;
        font-size: 4em;
        margin: auto;
        margin-bottom: .4em;

      }

      sub {

        color: blue;
        font-size: .4em;
        left: 3.6em;
        top: 3.5em;
        position: absolute;

      }

      .break {
        flex-basis: 100%;
        height: 0;
      }

      .buttons {
        display: flex;
      }

      .row {
        display: flex;
        font-weight: bold;
        font-size: 4em;
        font-family: Arial;
      }

      #score {
        display: grid;
        font-size: 1.4em;
        font-family: Arial;
        color: white;
        position: fixed;
        top: 1em;
        left: 1em;
      }

      #scoreScreen {

        display: none;
        background: #6b756f;
        border-radius: .5em;
        padding-left: .8em;
        padding-right: .8em;
        padding-bottom: .4em;
        color: #FFFFF0;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2em;

      }

      #playAgain {

        color: #FFFFF0;
        border-radius: .5em;
        background: #1F7C1F;
        font-weight: bold;

      }

      #cancelScore {

        border-radius: .25em;
        font-weight: normal;
        background: none;
        position: fixed;
        left: 12.4em;
        top: .1em;
        margin: .1em;
        padding: .1em .25em .1em .25em;
        border: 1px solid #3d4641;
        color: #3d4641;
        font-size: 1.25em;
      }

      .orientationHint {

        text-decoration: underline;

      }

      .dice {

        display: flex;
        justify-content: center;
        align-items: center;
        width: 2em;
        height: 2em;
        border: 1px solid #FFFFFF;
        border-radius: .2em;
        margin: .1em;
        user-select: none;
        background: #FFFFF0;

      }

      #wordBoard {

        display: flex;
        font-weight: bold;
        font-size: 2em;
        font-family: Arial;

      }

      #completedWords {

        display: grid;
        font-weight: bold;
        font-size: 2em;
        font-family: Arial;

      }

      .miniDice {

        display: flex;
        justify-content: center;
        align-items: center;
        width: 2em;
        height: 2em;
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        margin: .1em;
        user-select: none;
        background: #FFFFF0;

      }

      .wordList {

        display: flex;

      }

      .selected {

        background: #7AAB50;

      }

      .highlightedDice {

        background: #FFEE8C;

      }

      .r1 {
        transform: rotate(0deg);
      }
      .r2 {
        transform: rotate(90deg);
      }
      .r3 {
        transform: rotate(180deg);
      }
      .r4 {
        transform: rotate(270deg);
      }

      #add{

        background: #1F7C1F;

      }

      #clear {

        background: #820006;

      }

      button {

        color: white;
        font-size: 2em;
        font-family: "Arial";
        padding: 1em;
        border-radius: 1em;
        border: 0px;
        margin: .1em;

      }

      #nav a{

        color: #FFFFF0;
        font-size: 1em;

      }
