
body{
    height: 100vh;
    background: linear-gradient(186deg, rgb(42, 38, 105) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%) no-repeat;
}

h1{
    text-align: center;
    font-family: "Honk", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "MORF" 30,
    "SHLN" 41.8;
    font-size: 100px;
    color: rgb(220, 198, 164);
}

input{
    font-size: 20px;
    padding: 10px;
    margin: 10px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 20px;
}

button{
    font-size: 20px;
    padding: 10px;
    margin: 10px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    width: 60%;
}
button:hover{
    background-color: rgb(7, 126, 144);
    color: rgb(255, 255, 255);
}

#green{
    color: rgb(114, 213, 68);
    border-radius: 5px;
}
#red{
    color: rgb(255, 0, 0);
    border-radius: 5px;
}
#jaune{
    color: rgb(227, 223, 19);
    border-radius: 5px;
}

#wordToGuess, #guessWord, #perdu{
    text-align: center;
    background-color: beige;
    border-radius: 30px;
    font-size: 20px;
    padding: 30px;
    max-width: 300px;
    margin: auto;
}