body .calc {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.container2 {
    max-width: 500px;
    margin: auto;
    text-align: center;
    padding: 0px 20px;
	margin-top: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}
h1 {
    margin-top: 2rem;
	}
input, select {
    width: 90%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #218838;
}
.result {
    margin-top: 20px;
    font-size: 18px;
}
.gauge {
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.gauge-fill {
    height: 100%;
    width: 0;
    background: green;
 }
/* les images ne debordent plus de la fenetre.
   Bootstrap ne borne que les images de classe « img-fluid » ; celles
   du corps gardaient la largeur ecrite dans leur balise et faisaient
   deborder la page sur telephone. */
img, iframe, video, embed, object {
	max-width: 100%;
}
img {
	height: auto;
}
