/*
  Description : Ceci est les trophées de mon site(css.
  Auteur : Esteban Crausaz
  Date de création : 09.01.2026
  */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f2f2f2;
}


nav{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 24px auto 0;
  background: rgb(255, 255, 255);
  border: 1px solid #e5e5e5;
  border-bottom: none;
  padding: 12px 0;
  text-align: center;
}

nav a{
  color: #d508ec;
  text-decoration: underline;
  font-size: 14px;
  margin: 0 10px;
}


main.page{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 0 auto;                 
  background: white;
  border: 1px solid #e5e5e5;
  padding: 25px 40px;
  border-bottom: none;            
}

h1{
  text-align: center;
  font-size: 40px;
  margin: 10px 0;
  color: white;
}

hr{
  border: none;
  border-top: 1px solid #dddddd;
  margin: 15px 0 30px;
}


.trophee{
  width: 760px;
  max-width: 100%;
  margin: 0 auto 38px;

  display: grid;
  grid-template-columns: 220px 1fr;  
  column-gap: 30px;
  row-gap: 14px;

  align-items: center;
}

.trophee h2{
  grid-column: 1 / -1;
  text-align: center;
  font-size: 30px;               
}

.trophee img{
  width: 200px;                  
  height: 200px;
  object-fit: contain;
  justify-self: center;
}

.trophee p{
  font-size: 18px;
  color: #222;

  
  justify-self: start;

 
  line-height: 1.4;
}


footer{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 0 auto 24px;           
  background: white;
  border: 1px solid #e5e5e5;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
}


footer p{
  display: inline-block;
}


@media (max-width: 800px){
  main.page{
    padding: 20px;
  }

  .trophee{
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 10px;
    text-align: center;
  }

  .trophee img{
    width: 160px;
    height: 160px;
  }

  .trophee p{
    justify-self: center;
  }

  .trophee h2{
    font-size: 24px;
  }
}
.page h1{
  background-color: #b607e1; 
  padding: 20px 0;
}

.trophee{
  transition: transform 0.5s ease;
}

.trophee:hover{
  transform: scale(1.2);
}



