/* ROLS Gilles pour OBS - Mai 2024 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: arial black;
  text-align: center;
  background-image: linear-gradient(90deg, #101010 0%, #101010 100%);
}

#wrapper {
  padding: 10px;
  border-radius: 30px;
  //background-color: gray;
}

#chrono {
  font-size: 100px;
  margin-bottom: 5px;
}


.button {
  display: inline-block;
  padding: 5px 20px;
  font-size: 24px;
  cursor: pointer;
  font-family: arial black;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #04AA6D;
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px #999;
}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button1 {
  background-color: #04AA6D; 
  color: white; 
  border: 3px solid #04AA6D;
}

.button1:hover {
  background-color: #048A4D;
  color: white;
}

.button2 {
  background-color: #008CBA; 
  color: white; 
  border: 3px solid #008CBA;
}

.button2:hover {
  background-color: #006C9A;
  color: white;
}

.button3 {
  background-color: #f44336; 
  color: white; 
  border: 3px solid #f44336;
}

.button3:hover {
  background-color: #c41306;
  color: white;
}

.button4 {
  background-color: white;
  color: black;
  border: 3px solid #e7e7e7;
}

.button4:hover {
  background-color: #d7d7d7;
  color: black;
}

.button5 {
  background-color: white;
  color: black;
  border: 3px solid #555555;
}

.button5:hover {
  background-color: #555555;
  color: white;
}
