JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <p style= "background-color: white; text-align:center;">
        Bienvenue dans notre jeu. Es-tu pret à jouer?
    </p>
    <div>
		<span style= "">Oui!</span>
    </div>
</body>

CSS

body{
   background-color:#b7d1c4  
}

div{
    border-radius: 5px;
	border: 2px solid #6495ED;
	background-color: #BCD2EE;
	height: 20px;
	width: 80px;
	margin: auto;
	text-align: center;
}

JavaScript

console.log("Bienvenue dans notre jeu. Es-tu près à jouer?")