body,
html {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.shape {
  pointer-events: all;
}

body {
  padding: 0;
  margin: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.menubar {
  display: flex;
  flex-direction: row;
  margin: 0.5rem;
  padding: 0.3rem;
  font-size: 1.2rem;
}

.menubar > .button, .menubar > .button-disabled {
  background-color: #1c87c9;
  border: none;
  color: white;
  padding: 20px 34px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
  margin-right: 0px;
  margin-left: 0px;
}

.menubar > .button:hover {
  background-color: #e7e7e7;
  color: #444;
}

.menubar > .button-disabled {
  pointer-events: none;
  background-color: #e7e7e7;
  color: #aaa;
}

.logo {
  width: 170;
  margin-right: 25px;
  /* height: 100%; */
}

@media (max-width: 767px) {
  .container {
    width: 50%;
    height: 50%;
  }
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0.3rem;
  background-color: #eee;
  font: 1rem "Fira Sans", sans-serif;
  width: 95%;
  height: 85%;
}

.challenges {
  width: 30%;
}

.challenge-list {
  margin: 0.5rem;
  padding: 0.3rem;
  font-size: 1.2rem;
}

.challenge-item {
  margin: 0.5rem;
  padding: 0.3rem;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}

.challenge-item:hover {
  background-color: #f8f07e;
}

.challenge-desc {
  display: flex;
  flex-direction: column;
}

.challenge-desc > h2,
.challenge-desc > p {
  margin: 0.2rem;
  font-size: 1rem;
}

.challenge-area {
  display: block;
  width: 100%;
  height: 100%;
  /* touch-action: none; */
}

.challenge-canvas {
  display: block;
}

/* about */

.content {
  margin: 50px;
  margin-bottom: 0px;
  max-width: 900px;
  background-color: #eeede6;
  border-radius: 10px;
  padding: 25px;
}

.content p {
  text-align: justify;
}

.logos-partenaires {
    margin:  15px 50px;

}