body {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.game {
  background-color: #ccf3f0;
  border-radius: 35px;
  position: relative;
  margin: auto;
  min-width: 70%;
  min-height: 700px;
  box-shadow: 0px 7px 15px #00000029, 0 0 10px lightgray inset;
  border: 11px solid #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagesContainer {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  border: none;
}

img {
  height: 150px;
  border: 1px solid;
  position: relative;
  float: left;
  margin: 10px;
}

img:hover {
  border: 4px solid;
  margin: 7px;
}

div {
  float: left;
  margin: 7px;
}

button {
  height: 20px;
  border: 0px solid;
  position: relative;
  float: left;
  margin: 5px;
}

.colorsContainer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;

  margin-top: 25px;
  padding: 15px;
}

.colorButton {
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  cursor: pointer;

  box-shadow: 0 0 10px lightgray;
}

.colorButton:hover {
  transform: scale(1.05);
}

.colorButton.active {
  border: 2px solid black;
  transform: scale(1.1);
}

canvas {
  background-color: white;
  box-shadow: 0 0 10px lightgray inset;
  width: 800px;
  height: 600px;
}

@media print {
  :root * {
    display: none;
  }

  :root canvas {
    display: block !important;
    box-shadow: none;
  }
}

.button_return {
  position: absolute;
  right: 30px;
  top: 30px;
  background: none;
  border: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.button_return > a > i {
  font-size: 30px;
  color: #042b60;
}
.buttons_wrap {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.optionsContainer {
  align-items: center;
  justify-content: space-evenly;
  padding: 15px;
  width: 800px;
  max-width: 100%;
}

.optionsContainer button {
  border: 1px solid;
  width: 50px;
  height: 50px;
  display: flex;
  background-color: transparent;
  border: none !important;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}

.optionsContainer button:hover {
  transform: scale(1.05);
}

.optionsContainer button img {
  width: 100%;
  max-height: 100%;
  margin: auto;
  border: none !important;
}
