* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: rgb(220, 229, 232);
  position: relative;
  overflow-x: hidden;
}
#create-canvas {
  margin: auto;
  border-radius: 10px;
  background-color: #cccecf;
  border: 3px solid rgba(0, 0, 0, 0.538);
  overflow: none;
  transition: 0.4s;
}

#start {
  width: 110px;
  height: 40px;
  margin: auto;
  margin-top: 1.2%;
  border: none;
  border-radius: 10px;
  background-color: #44aece;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}
#start:hover {
  background-color: #66cbdd;
  box-shadow: 4px 6px rgba(0, 0, 0, 0.59);
}
#start:active {
  transform: scale(0.9);
}
h1 {
  text-align: center;
  margin-top: 2%;
  margin-bottom: 1.5%;
}
footer {
  margin: auto;
  margin-top: 4%;
  width: 100vw;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(208, 212, 215);
  background-color: #526f81;
}

.info-move-player01 {
  position: absolute;
  top: 20%;
  left: 2%;
  font-size: 1.2em;
  font-weight: 600;
  background-color: #7474e2;
  color: rgb(234, 236, 238);
  width: 370px;
  height: 40px;
  border-radius: 20px;
  box-shadow: 4px 6px rgba(0, 0, 0, 0.558);
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-move-player02 {
  position: absolute;
  top: 53%;
  left: 2%;
  font-size: 1.2em;
  font-weight: 600;
  background-color: #b13f3f;
  color: rgb(234, 236, 238);
  width: 370px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 6px rgba(0, 0, 0, 0.558);
}
.information-player01-move {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  top: 28%;
  left: 5.6%;
  width: 12%;
  height: 20%;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid black;
  background-color: #9bc5de;
  display: grid;
  justify-content: center;
  align-items: center;

  & ul {
    /* background-color: #44ce94; */
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  & ul li {
    list-style: none;
    font-size: 1.1em;
  }
  & ul li span {
    color: #180add;
    font-weight: 600;
    font-size: 1.2em;
  }
}
.information-player02-move {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  display: none;
  top: 61%;
  left: 5.6%;
  width: 12%;
  height: 20%;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid black;
  background-color: #de9b9b;
  display: grid;
  justify-content: center;
  align-items: center;

  & ul {
    /* background-color: #44ce94; */
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  & ul li {
    list-style: none;
    font-size: 1.1em;
  }
  & ul li span {
    color: #c2280d;
    font-weight: 600;
    font-size: 1.2em;
  }
}

.conteiner-lib-iro {
  display: none;
  position: absolute;
  top: 45%;
  left: 83%;
}

.btn-change-bg {
  width: 10%;
  height: 40px;
  background-color: #66dd96;
  border-radius: 8px;
  border: 2px solid black;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  position: absolute;
  top: 35%;
  left: 83%;
}
