@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background-color: #313131;
  color: #fff;
  font-family:  'VT323', monospace;
}

/*Animation*/
@keyframes ripple {
  0% {
    background-color: transparent;
  }

  30% {
    background-color: var(--cell-color);
  }

  60% {
    background-color: transparent;
  }

  100% {
    background-color: transparent;
  }
}


@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
h1 {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: default;
  text-align: center;
  margin-left: 30%;
  margin-right: 30%;
  padding: 20px;
  font-size: 70px;
  text-transform: uppercase;
  background: linear-gradient(red 0 0) left / var(--p,0) no-repeat;
  transition: .4s,background-position 0s;
}
h1:hover {
  text-align: center;
  margin-left: 30%;
  margin-right: 30%;
  padding: 20px;
  font-size: 70px;
  text-transform: uppercase;
  --p: 100%;
  background-position: right;
}
h4 {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: default;
  text-align: center;
  margin-left: 30%;
  margin-right: 30%;
  padding: 20px;
  margin-top: -40px;
  font-size: 30px;
  text-transform: uppercase;
  background: linear-gradient(red 0 0) left / var(--p,0) no-repeat;
  transition: .4s,background-position 0s;
}
h4:hover {
  text-align: center;
  margin-left: 30%;
  margin-right: 30%;
  margin-top: -40px;
  padding: 20px;
  font-size: 30px;
  text-transform: uppercase;
  --p: 100%;
  background-position: right;
}

table {
  font-size: 25px;
  table-layout: fixed;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-radius: 7px;
}

thead th:nth-child(1) {
  width: 50%;
  
}

thead th:nth-child(2) {
  width: 20%;
  
}

thead th:nth-child(3) {
  width: 15%;
}

thead th:nth-child(4) {
  width: 35%;
}

th, td {
  padding: 20px;
  border: solid;
}

.gauche {
  float: left;
  margin-left: 300px
}

.droite {
  float: right;
  margin-right: 300px;
}
#enteteTablo{
  font-size: 30px;
  font-style: italic;
}

.divSelect{
  text-align: center;
}

#departDeroulantes{
  text-align: center;
}

#buttonChoice{
  display: block;
  margin: 0 auto;
}

#mapid {
  height: 700px;
  border-radius: 12px;
  border-style: solid;
}