@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

.vertical-center-column {
  min-height: 100%; /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 0;
}
.vertical-center {
  min-height: 100%; /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
  margin-bottom: 0;
}

label {
  margin-top: 10px;
}

h1 {
  text-align: center;
  cursor: default;
}

span {
  color: white;
}

button {
  margin: 20px 0;
}

.texte {
  border-radius: 10px;
  background-color: white;
  cursor: default;
}

  .texte p {
    font-family: 'Kaushan Script', cursive;
    font-size: 160%;
    margin: 10px 20px;
  }

.alert {
  margin-top: 10px;
}

.hidden {
  display: none;
}

.timer {
  position: absolute;
  bottom: 25px;
  right: 50px;
}

  .timer span {
    color: coral;
  }


/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 650px;
  height: 520px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:active .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}