@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
    -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: #c5c5c5;
    font-family: 'Bebas Neue', cursive;

    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 6rem;
}

.main {
    height: 80%;
    width: 80%;
    background-color: #fff;
    box-shadow: 0 0 20px 8px #838383;
    border-radius: 30px;

    transition: .5s;
}

.mainRouge {
    box-shadow: 0 0 120px 138px #ff0000;
}

.mainVert {
    box-shadow: 0 0 120px 138px #1b7c00;
}

.nbEssai {
    margin: 25px auto;
    height: 13%;
    width: 85%;
    background-color: #e0e0e0;
    box-shadow: 0 0 20px 8px #838383;
    border-radius: 30px;
    font-size: 3.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.motEnLuiMeme {
    margin: 30px auto;
    padding-top: 25px;
    height: 13%;
    width: 45%;
    background-color: #e0e0e0;
    box-shadow: 0 0 20px 8px #838383;
    border-radius: 30px;
    font-size: 4.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.propsition {
    margin-top: 25px;
    margin-left: 10.5vw;
    height: 13%;
    width: 60vw;
    background-color: #e0e0e0;
    box-shadow: 0 0 20px 8px #838383;
    border-radius: 30px;
    border: none;
    font-size: 4rem;
    text-align: center;
    font-family: 'Bebas Neue', cursive;

    transition: .3s;
}

.propsition:focus {
    border: none;
    background-color: #a1a1a1;
}

.lettreFausse {
    margin: 30px auto;
    height: 13%;
    width: 60vw;
    background-color: #eb0000;
    border-radius: 30px;
    box-shadow: 0 0 30px 10px #eb0000;
    font-size: 1.6rem;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
}

.nouvellePartie {
    margin: 30px auto;
    height: 13%;
    width: 60vw;
    background-color: #646464;
    border-radius: 30px;
    box-shadow: 0 0 30px 10px #616161;
    font-size: 5rem;
    font-family: 'Bebas Neue', cursive;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}