@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bungee', cursive;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: #888888;
    transition: .5s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.fondGagné {
    background-color: #00ff4c;
}

.fondPerdu {
    background-color: #ce1414;
}

.simon {
    height: 700px;
    width: 700px;
    background-color: #000000;
    border-radius: 50%;
    padding-top: 20px;
    padding-left: 20px;
}

.regroupementCouleur {
    height: 640px;
    width: 640px;

    display: grid;
    column-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
    "jaune bleu"
    "vert rouge"
}

.bleu1 {
    grid-area: bleu;
    height: 320px;
    width: 320px;
    background-color: #2f1aab;
    border-radius: 20px 10000% 20px 20px;

    transition: .3s;
}

.bleuActif {
    box-shadow: 0px 0px 20px 13px #4f2fff;
    background-color: #0004ff;
}

.rouge2 {
    margin-top: 20px;
    grid-area: rouge;
    height: 320px;
    width: 320px;
    background-color: #c41111;
    border-radius: 20px 20px 10000% 20px;

    transition: .3s;
}

.rougeActif {
    box-shadow: 0px 0px 20px 13px #d30505;
    background-color: #ff0000;

}

.vert3 {
    margin-top: 20px;
    grid-area: vert;
    height: 320px;
    width: 320px;
    background-color: #1fc41f;
    border-radius: 20px 20px 20px 10000%;

    transition: .3s;
}

.vertActif {
    box-shadow: 0px 0px 20px 13px #1fc41f;
    background-color: #26ff00;
}

.jaune4 {
    grid-area: jaune;
    height: 320px;
    width: 320px;
    background-color: #ffb700;
    border-radius: 10000% 20px 20px 20px;

    transition: .3s;
}

.jauneActif {
    box-shadow: 0px 0px 20px 13px #ffb700;
    background-color: #fff200;
}

.touche {
    line-height: normal;
}

.nbManche {
    font-size: 1rem;
    margin-bottom: 80px;
}

.cercleNoir {
    position: absolute;
    height: 350px;
    width: 350px;
    padding-top: 65px;
    background-color: #000000;
    border-radius: 50%;
    line-height: 10px;

    color: azure;
    font-size: 5.5rem;
    text-align: center;
}

.start {
    width: 150px;
    margin-top: 40px;
}

.indicateur {
    margin-top: 20px;
    font-size: 1rem;
}

.reset {
    line-height: 12px;
    height: 20px;
    margin-top: 20px;
    font-size: 1rem;
}