/*
  Description : Ceci est les moments de gloires de mon site(css).
  Auteur : Esteban Crausaz
  Date de création : 10.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: white;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  padding: 12px 0;
  text-align: center;
}

nav a{
  color: #2b5db7;
  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;
  border-bottom: none;
  padding: 25px 40px;
}

h1{
  text-align: center;
  font-size: 38px;
  margin: 10px 0 12px;
  color: #ffffff;
}

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


.moment{
  width: 820px;
  max-width: 100%;
  margin: 0 auto 30px;

  display: grid;
  grid-template-columns: 1fr 300px; 
  column-gap: 45px;
  align-items: start;
}


.moment .texte h2{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.moment .texte p{
  font-size: 13px;
  line-height: 1.55;
  color: #222;
}


.moment .media{
  text-align: center;
}

.moment .media iframe{
  width: 260px;
  height: 150px;
  display: block;
  margin: 0 auto;
  border: 1px solid #cfcfcf;
}

.moment .media .hint{
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
  color: #333;
}


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;
}


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

  .moment{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .moment .media iframe{
    width: 100%;
    max-width: 320px;
    height: 180px;
  }

  .moment .media .hint{
    text-align: center;
  }
}
.page h1{
  background-color: #b607e1; 
  padding: 20px 0;
}
