* {
  margin: 0;
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}


header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position:fixed;
  z-index: 10;
  background-color: transparent;
  transition: 0.2s ease all;
}

.logoBox{
  z-index: 2;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logoBox a img {
  width: 140px;
  height:140px;
  max-width:140px;
  max-height: 140px;
  min-height: 50px;
  min-width: 50px;
  margin: 0 auto;
  transition: width 0.2s, height 0.2s;
  }

.menu{
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: static;

  transition: background-color 0.2s ease-in;

  overflow-y: scroll;
  scrollbar-width:none;
}

.menu a{
  color: #1f1f1f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
  margin: 1em;
  transition: 0.2s ease-in;
}

.menu-toggler{
  position: fixed;
  left: 35px;
  top: 35px;
  display: inline-block;
  cursor: pointer;
}

.top-bar, .mid-bar, .bot-bar{
  height: 2px;
  width: 25px;
  background-color: black;
  margin: 5px 0;
  transition-duration: 0.4s;
}

header.scrolled {
  background-color: #48853388;
  transition: background-color 0.2s ease-in;
}

header.scrolled a img{
  width: 70px;
  height: 70px;
}

header.scrolled .menu a{
  font-size: 1.3em;
}

header.expanded{
  background-color: #488533da;
  transition: background-color 0.2s ease-in;
}

header.expanded .menu{
  display: flex;
}

header.expanded .top-bar{
  transform: translate(0, -2px) rotate(45deg);
  transform-origin: left;
  transition-duration: 0.4s;
}

header.expanded .mid-bar{
  background-color: transparent;
  transition-duration: 0.4s;
}

header.expanded .bot-bar{
  transform: translate(0, 2px) rotate(-45deg);
  transform-origin: left;
  transition-duration: 0.4s;
}

h1{
  font-size: 3em;
}

h2{
  font-size: 2em;
}

footer {
  padding: 20px;
  background-color: #488533;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/montagne.png);
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  background-size: contain;
}

.respos {
  display: flex;
  margin-bottom: 20px;
}

.mail{
  font-size: 1.4em;
}

.reseaux {
  display: flex;
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.personne {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 10px;
  width: 170px;
}

.personne img {
  border: solid #E69B38 5px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 10px;
}

footer .reseaux .lien-rs {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0px;

  transition: 0.3s ease all;
}

footer .reseaux .lien-rs:hover {
  width: 70px;
  height: 70px;
  margin-top: 0px;
  margin-bottom: 0px;
}

footer h2 {
  text-align: center;
}


@media all and (max-width: 860px) {

  .logoBox a img{
    width: 70px;
    height: 70px;
  }

  .menu-toggler{
    left: 30px;
    top: 30px;
  }

  header.scrolled a img{
    width: 60px;
    height: 60px;
  }

  .respos{
    flex-direction: column;
  }
}