html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #070600;
  width: 100%;
  height: 100%;
  display: flex;

  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;
}
div {
  box-sizing: border-box;
}

canvas {
  display: block;
}
#container {
  width: 600px;
  height: 600px;
}
#startContainer {
  width: 100%;
  height: 100%;
  padding: 100px;
  background-color: #d9fff8;
}
#settingsContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 4px solid white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #c7ffda;
}
.titleRow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 10%;
  font-weight: 1000;
  font-family: "Play", sans-serif;
}
.settingRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0px 10px;
  margin-bottom: 5%;
}
.playRow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
#playButton {
  width: 90px;
  height: 50px;
  font-family: "Play", sans-serif;
  font-weight: 800;
  font-size: 30px;
  border-radius: 5px;
  border: none;
  text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000,
    -1px -1px 0 #000;
  color: white;
  background-color: #ffcbdd;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

#playButton:hover {
  outline-color: transparent;
  outline-style: solid;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: 0.3s;
}

#sketchContainer {
  width: 100%;
  height: 100%;
  display: none;
}

#firstPlayer {
  font-family: "Play", sans-serif;
}
