.back{
  background-image: url("../images/back.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#roue {
  width: 650px;
  height: 650px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  position: absolute;
}

html, body {
    height: 100%;
    width: 100%;
  }

/** Button */
button {
    margin: 0;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
  }

  .btn {
    font-size: 14px;
    line-height: 1.4;
    padding: 13px 20px;
    border-radius: 4px;
    transition: box-shadow 0.1s, top 0.1s;
    box-shadow: 0 3px 0 rgba(0,0,0,0.3);
    top: 0;
    background: #fff;
  }
  .btn:hover {
    box-shadow: 0 3px 0 transparent;
    top: 3px;
  }
  .btn:active {
    background: #f2f2f2;
  }

  /** Modal */
  .regles {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    max-width: 55%;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  }
  .modal-close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
  }

  /** Overlay */
  .overlay {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
  }

  /** JS */
  .is-visible {
    opacity: 1;
    pointer-events: auto;
  }


.n{
  height: 75px;
  width: 50px;

}
.marker {
  position: absolute;
  width: 20%;
  left: 580px;
  top: 282px;
  z-index: 2;
}

.wheel {
  width: 100%;
  height: 100%;
}

.button {
  display: block;
  width: 60%;
  margin: 10px auto;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 10s;
}
.rainbow{
  animation: coolor 10s;
}


.black{
  background-color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 50px;
  color:white;
  text-align: center;
  border-radius: 5px;
}
.red{
  background-color: red;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 50px;
  color:white;
  text-align: center;
  border-radius: 5px;
}
.green{
  background-color: green;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 50px;
  color:white;
  text-align: center;
  border-radius: 5px;
}

.overlay2 {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #222;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


@keyframes blur {
  0% {
    filter: blur(0.5px);
  }
  50%{
    filter: blur(2px);
  }
  80% {
    filter: blur(1.5px);
  }
  95% {
    filter: blur(0px);

  }


}

@media all and (max-device-width: 768px) {
    #roue {
        width: 800px;
        height: 800px;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        position: absolute;
      }

      .marker {
        position: absolute;
        width: 22%;
        left: 680px;
        top: 340px;
        z-index: 2;
      }
  }



