body{
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}
header{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #092F4C;
    color: white;
}
.titre{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 70%;
}
.titre h1{
    text-align: center;
}
.personal-info{
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.personal-info h1{
    font-size: 20px;
    margin-left: 2%;
}
.score{
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.score h3{
    font-size: 20px;
}
.score p{
    font-size: 25px;
    text-align: center;
    margin-left: 1%;
}
.container{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #A62937;
}
.display{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
    height: 86vh;
    padding: 15px;
    gap: 30px;
    
}
.card1 , .card2 , .card3, .card4, .card5 , .card6, .card7, .card8 , .card9 , .card10 , .card11 , .card12, .card13, .card14, .card15, .card16{
    width: 150px;
    border-radius: 15px;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.545);
    background-color: white;
    height: 250px;
    border-color: transparent;
}
/* .congratulations{
    animation: top_to_bottom 1s ease;
}

@keyframes top_to_bottom {
  0% {
    transform: translateY(-60px); 
    opacity: 0; 
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
} */