#container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#turtle {
  border: 3px solid #444;
  margin-bottom: 20px;
}

#controls {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: sans-serif;
}

.row {
  display: flex;          /* put elements in a horizontal row */
  gap: 10px;              /* spacing between elements */
  width: 100%;            /* force each row to take full width */
  margin-bottom: 12px;    /* spacing between row 1 and row 2 */
  justify-content: center;
}

#run {
  background-color: #0f0;
  min-width: 50px;
}

#controls label {
  display: flex;
  flex-direction: column;
  color: black;
  font-family: 'consolas', 'courier new', monospace
}

#tips {
  border: 3px solid black;
  margin: 65px auto;
  max-width: 1300px;
}
button {
  min-width: 70px;
  min-height:50px;
}
hr {
  color:#222;
}
.blue-bold {
  font-weight: bold;
  font-size: 19px;
  color: blue;
}
#vcount {
  font-weight: bold;
  font-size: 26px;
}
#visitCount {
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid black;
  border-radius: 6px;
  background-color: #ccc;
  max-width: 190px;
  max-height: 80px;
}

body {
  text-align: center;
  font-family: 'consolas', Arial, Helvetica, sans-serif;
  background-color: #eee;
  margin: 0;
  padding: 0;
}


@media (max-width:600px) {
  body {
    font-size: 20px;
  }
  #turtle {
    width: 100vw;
    height: 100vw;
    display:block;
  }
  #angle, #colors {
    min-height:40px;
  }
  input[type="radio"] {
    min-height: 20px;
  }
}