*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
  color: black;
  position: relative;
  background-image: linear-gradient(45deg, royalblue, aqua, white);
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn{
  to{
    opacity: 1;
  }
}

.background-layer{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.main-container{
  padding: 50px 10px 0;
}

h1{
  font-family: Roboto, sans-serif;
  text-align: center;
  font-size: 72px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: white;
  text-shadow: 1px 1px 0 #333, 2px 2px 0 #3a3a3a, 3px 3px 0 #575757, 4px 4px 0 #6b6b6b ;

}

.information{
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  border-radius: 5px;
  padding: 25px 25px 50px;
  position: relative;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

.chargement{
  position:absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: inherit;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.chargement.actif{
  visibility: visible;
  opacity: 1;
}
.chargement-logo{
  width: 75px;
  animation: chargement 2s ease-out infinite;
}

@keyframes chargement{
  50%{
    transform: rotate(360deg);
  }
}

.emoji{
  display: block;
  max-width: 75px;
  margin: 0 auto 10px;
  filter: drop-shadow(2px 2px 1px #515151);
}

.user-info{
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}

table{
  margin-bottom: 30px;
  width: 100%
}

table, th, td{
  border: 1px solid;
  border-collapse: collapse;
  text-align: left;
}

th, td{
  padding: 8px;
  font-weight: 600;
  font-size: 18px;
}

td{
  color: black
}

.bar-text{
  font-weight: 600;
  margin-bottom: 7px;
}

.bar-container{
  width: 100%;
  display: flex;
  position: relative
}

.pointeur{
  position: absolute;
  left: -15px;
  width: 30px;
  margin-top: 15px;
  transform: rotate(180deg);
  transition: transform 0.4s ease-out;
}

.mesure{
  height: 10px;
  flex-grow: 1;
  background-color: red;
}

.mesure:not(:last-child){
  border-right: 2px solid white;
}

.mesure:nth-child(2){
  background-color: green;
}
.mesure:nth-child(3){
  background-color: yellow;
}
.mesure:nth-child(4){
  background-color: orange;
}
.mesure:nth-child(5){
  background-color: red;
}
.mesure:nth-child(6){
  background-color: purple;
  flex-grow: 2;
}
.mesure:nth-child(7){
  background-color: brown;
  flex-grow: 4;
}







