body {
    background-color: #e5e5e5;
}

.widget-ds {
    height: 100%;
}
.game {
    min-height: 600px;
    /* border: solid 2px #c82a0e;
    border-radius: 15px; */
    color: white;
}


/* btn info */
#info{
    color: white;
    background-color: #5865F2;
    border-radius: 100px;
    border: solid 1px black;
    font-weight: bold;
    height: 40px;
    width: 40px;
    text-align: center;
    justify-content: center;
    display: flex;
    margin: 10px;
    padding: 5px;
}
#info:hover {
    cursor: pointer;
    background-color: #FBC638;
    transition: all 1s ;
    color: black;
    transform: rotate(360deg);
}

/* pop-up help */
.help-letter-container {
    border: 1px grey solid;
    border-radius: 5px;
    align-items: center;
    margin: 5px;
    padding: 3px;
    height: 40px;
    width: 40px;
    font-weight: bold;
}

.span-correct {
    color: #d00000;
    font-weight: bold;
}

.span-exists {
    color: #FBC638;
    font-weight: bold;
}

.span-wrong {
    color: #5865F2;
    font-weight: bold;
}

/* .play-btn {
    font-size: 85px;
    padding: 40px 60px;
    font-family: 'Poller One', cursive;
    border: none;
    border-radius: 15px;
    background: radial-gradient(circle, rgb(230, 43, 9) 0%, rgb(200, 42, 14) 100%);
}

.play-btn:hover {
    background: radial-gradient(circle, rgb(200, 42, 14) 70%, rgb(140, 40, 24) 95%);
} */
#bottom-game{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#reset-btn {
    color: white;
    font-size: 1.5rem;
    background-color: #FBC638;
    border-radius: 10px;
}
#reset-btn:hover {
    color: black;
    background-color: #5865F2;
    transition: all 0.5s;
}

#attempt-count {
    display: flex;
    width: 100%;
    justify-content: center;
    bottom: 0;
}

/* cases jeu */
.letter {
    min-height: 60px;
    min-width: 60px;
    max-width: 60px;
    background-color: #6b9aeb;
    color: white;
    font-weight: bold;
    font-size: 35px;
    -webkit-text-stroke: 1px black;
    margin: 10px;
    border: 0.5px black solid;
    border-radius: 15px;
    text-align: center;
    vertical-align: middle;
}

.correct {
    background-color: #d00000;
}

.exists {
    background-color: #FBC638;
}

.wrong {
    background-color: #5865F2;
}

/* ------------- btn ------------- */

@import url('https://fonts.googleapis.com/css?family=Poppins:900i');

* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.cta {
    display: flex;
    padding: 10px 45px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: white;
    background: #5865F2;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
}

.cta:focus {
   outline: none; 
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
    color: #FBC638;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

  .aa {
    transform: skewX(15deg) 
  }

  .aa:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
  }
  
/**************SVG****************/

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}