body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #DCDCDC;
    color: #333;
    padding: 20px;
	text-align: center;
	justify-content: center;
	display: flex;
}


.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Définir une largeur maximale */
    width: 90%; /* Ajouter une largeur pourcentage */
}

h1 {
    text-align: center;
}

.control-panel {
    margin: 20px 0;
}

.visualization {
	border-radius: 1%;
    width: 100%;
    height: 800px;
    background-color: #e0e0e0;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

#visualization canvas {
    width: 100%;
    height: 100%;
}

.title {
  text-align: center;
  margin-top: 20px;
}

.title a {
  text-decoration: none;
  color:red; 
  font-size: 44px; 
  font-weight: bold; 
  text-transform: uppercase; 
}

.title a:hover{
	text-decoration: underline;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  min-width: 160px;
  border: none;
  cursor: pointer;
}


.dropbtn:hover, .dropbtn:focus {
  background-color: #3e8e41;
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
}


.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content a:hover {background-color: #f1f1f1;}


.dropdown:hover .dropdown-content {
  display: block;
}


.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
