* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fdfdfd;
  color: #222;
  line-height: 1.6;
  padding: 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.entete {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 1.5rem 1rem 0;
}

.logo-titre {
  display: flex;
  align-items: center;
}

.logo-titre h1 {
  font-family: "Satisfy", cursive;
  margin: 0;
  font-size: 32px;
}

.logo {
  height: 70px;
  width: auto;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  padding-bottom: 10px;
}

.nav a:hover {
  border-bottom: 3px solid #000;
  transition: .2s;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}


/*@@@@@@@@@ MEDIAS QUERY @@@@@@@@@*/
@media (max-width: 610px) {

  .entete {
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-bottom: 50px;
  }
}