/*remise à 0 de toutes les marges*/
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*structure*/
.row{
  display: flex;
  align-items: center;
  width:100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.column {
  flex-basis: 50%;
  max-width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  padding:1rem;
}

.row-reverse{
  flex-direction: row-reverse;
}

html{
  font-family: arial;
  font-size: 1rem;
  scroll-behavior: smooth;
}
.page-separator{
  height: 100vh;
  background-color: black;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
#page-separator-one{
 background-image: url(../images/image1.jpg);
}
#page-separator-two{
 background-image: url(../images/image2.jpg);
}
#page-separator-three{
 background-image: url(../images/image3.jpg);
}
#page-separator-four{
 background-image: url(../images/image4.jpg);
}

/*communs (titres, paragraphes,...)*/
h1{
  color:#27375E;
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}
h2{
  color:#19588D;
  font-size: 2rem;
  text-transform: uppercase;
}
h1, h2{
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2rem;
  text-align: center;
}
img {
  max-width:100%;
  height: auto;
  border-radius:3rem ;
}
p{
  line-height: 1.5rem;
}
.bold{
  font-weight: bold;
  color:#CE5A0F;
}

/*articles et associés*/
.page-article{
  background-color:#f6f4d2;
  min-height: 100vh;
  display: flex;
}
.page-article-dark{
  background-color: #171E24;
  color:white;
}
.article-date {
  color:#CE5A0F;
  text-transform: uppercase;
  font-size: 0.95rem;
  text-align: center;
  font-weight: bolder;
  padding-bottom: 5rem;
  padding-top:1.5rem;
}
#catch-phrase{
  color:white;
  letter-spacing: 1.7px;
  text-transform: none;
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: #27375E;
}
#fork{
  background-image: url(../images/fork.png);
  background-position: top 65% center;
  background-repeat: no-repeat;
  background-attachment:local ;
  background-size: 10%;
}

/*footer*/
footer{
 background-image: url(../images/footer.jpg);
 background-position: center;
 background-repeat: no-repeat;
 background-attachment: fixed;
 background-size: cover;
 min-height: 100vh;
 display:flex;
 align-items: center;
 justify-content: center;
}
.footer-link{
  color:white;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  background-color:#27375E;
  padding:2rem 4rem;
  border-radius: 3rem;
}
.footer-link:hover{
  background-color:rgba(255, 255, 255, 0.8);
  color:#CE5A0F;
  transform: scale(1.1);
  transition: transform .2s;
}

/*header et menu*/
header{
  background-color: #27375E;
  position: fixed;
  width: 100%;
  top:0;
  left:0;
}
.header-logo{
  height: 3.5rem;
  border-radius: 0rem;
}
.header-nav{
  flex-grow: 1;
}
.header-nav-list{
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.header-nav-item{
  flex-grow: 1;
}
.header-nav-link{
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-stroke-width: 0.7px;
  -webkit-text-stroke-color: #F6F4D2;
  letter-spacing: 1.5px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  text-align: center;
  cursor:url(../images/cursor.png),pointer;
}
*{
  cursor:url(../images/cursor.png),pointer;
}
.header-nav-link:hover{
  color:#CE5A0F;
  -webkit-text-stroke-width: 0px;
}

/*Résumé des modifications apportées
Body:
  -changement de curseur (patte d'ours)
Head:
  -ajout d'un favicon "ours"
Header:
  -changement de couleurs
  -police avec lettres transparentes
Articles:
  -arrondissement bordures des photos
  -article 1: ajout icone "fourchette&cuillère"
Article 1:
  -h1: transformation de la police
Footer:
  -lien arrondi et changement de couleur

