body {
  background-color: #2c3e50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: white;
  overflow-x: hidden;
  overflow-y: hidden;
}

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

.button-row {
  display: flex;
  justify-content: space-between;
}

.simon-button {
  width: 150px;
  height: 150px;
  margin: 10px;

  cursor: pointer;
  position: relative; /* Ajoutez ceci pour positionner le contenu à l'intérieur du cercle */
}

.simon-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5); /* Ajoutez une ombre interne pour simuler le quart de cercle intérieur */
  transition: box-shadow 0.3s; /* Ajoutez une transition pour un changement en douceur */
}

.simon-button.glow::before {
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 1); /* Augmentez l'ombre interne lorsqu'il y a une lueur */
}


.simon-button.glow {
  box-shadow: 0 0 20px 10px #fff; /* Appliquez l'effet glow uniquement lorsque la classe "glow" est présente */
}


.simon-button-initial {
  background-color: #2ecc71;
}

#start-button{
  margin-top: 30px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #3498db;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

#play-again-button {
  margin-top: 30px;
  padding: 10px;
  border-radius: 5px;
    border: none;
  background-color: #3498db;
  color: white;
  cursor: pointer;
  font-size: 16px;
  display: none;
}

#score {
  margin-top: 50px;
  display: none;
  font-size: 20px;
}

#green {
  background-color: #2ecc71;
  border-radius: 99% 0 0 0;
}

#red {
  background-color: #e74c3c;
  border-radius: 0 99% 0 0;
}

#yellow {
  background-color: #f1c40f;
  border-radius: 0 0 0 99%;
}

#blue {
  background-color: #3498db;
  border-radius: 0 0 99% 0;
}

.logo{
  padding-bottom: 30px;
}

.gameOverMessage{
  text-align: center;
  font-size: 50px;
}