body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

/* colors */

.gray{
  color: gray;
}

.blue{
  color: dodgerblue;
}

.pink{
  color: palevioletred;
}

.green{
  color: green;
}

.purple{
  color: purple;
}

.orange{
  color: orange
}

.teal{
  color: mediumaquamarine
}



.strike {
  text-decoration: line-through;
}

.content{
  width: 60%;
  margin: auto;
}

.change-puzzle-info {
  display: flex;
  justify-content: space-between;
}

.load-room {
  border: black 2px;
  border-style: solid;
  margin: 5px;
  padding: 5px;
}

#room-code-input{
  margin-right: 10px;
}

.puzz-gen{
  float: right;
  background-color: lightseagreen;
  height: 100%;
  margin-top: 10px;
}

#room-code-input{
  text-transform: uppercase;
}

.puzz-title{
  margin-left: 10px;
  text-align: center;
}

.puzzle-options{
  width: 100%;
}

.color-picker{
  text-align: left;
  display: inline-block;
  margin: 10px;
}

.reveal-answers{
  text-align: right;
  display: block;
  position: relative;
  float: right;
  color: #11CC99;
  border-radius: 5px;
  border-color: white;
  background-color: white;
}


.square-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.little-square{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  border: black 2px;
  border-style: solid;
  margin: 10px;
  width: 120px;
  max-width: 120px;
  max-height: 120px;
}

.anagram{
  text-align: center;
  margin-bottom: 0;
}

.clue-answer{
  text-transform: uppercase;
  text-align: center;
}

.clue-number{
  text-align: center;
}

/* Answer styling*/
.real-clue-number{
  margin-bottom: 0em;
  font-weight: bold;
}

.real-answer{
  margin-bottom: 0em;
  font-weight: bold;
}

.correct{
  color: green;
}

.incorrect{
  color: crimson;
}

/* clue styling */

.clue-box{
  display: flex;
  flex-direction: row;
  margin-left: 10px;
  justify-content: center;
}

.clue-block{
  display: flex;
}

.clue-row-number {
  margin-right: 1rem;
  margin-left: 0.7rem;
}

.clue-col{
  margin-right: 10px;
}

.clue1 {
  margin-bottom: 0;
  flex-basis: auto;
}

.clue2 {
  margin-bottom: 0;
  color: #a6ccb0;
  flex-basis: auto;
}

.clue-hint{
  color: #11CC99
}

.hidden{
  visibility: hidden;
  display: none;
}


/* For phones: */
@media (max-width: 768px) {
  .content{
    width: 100%;
    margin: auto;
  }

  .little-square{
    font-size: .5em;
    margin: 2px;
    border-width: 1px;
    border-color: gray;
  }

  .big-square{
    margin-bottom: 10px;
  }

  .clue-box{
    flex-direction: column;
  }

  body{
    padding: 10px;
  }
}