body{
    overflow-x: hidden;
    margin-top: 30px;
    font-family: arial;
    background-color: #FFE97F;
}
body h1{
    color: #2c3e50;
}

#circuit{
    margin-top: 30px;
    margin-left: 120px;
    width: 580px;
    border: 3px solid;	
    border-radius: 20px;
}

.cadre{
    margin-top: 10px;
    padding: 10px 10px;
    border-radius: 20px;
    position: relative;
    left: 800px;
    bottom: 470px;
    width: 600px;
    background-color: #f39c12;

}
.bouton {
    width: 180px;
    justify-content: center;
    position: relative;
    margin-top: 10px;
    bottom: 420px;
    background-color: #004A7F;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex: row;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.5s;
}
 .bouton:hover{
    background-color: #0094FF;
    transform: scale(1.1);

 }
 .bouton strong {
    font-family: arial;
    
 }