* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Helvetica', sans-serif;
  background: #121212;
}
aside svg{
  width: 70%;
}

aside p, aside address, aside a {
  font-family:monospace;
  color:snow;
  padding: .8rem;
}
.push {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  background-color: inherit;
  overflow-x: hidden;
  transition: all ease 0.5s;
}

#ouvre {
  color:snow;
  position:fixed;
  right:1em;
  z-index: 1;
  cursor:pointer;
}

#ferme {
  position: absolute;
  top: 0;
  right: 1em;
  color:snow;
  cursor:pointer;
}




header svg {
    width: 30%;
  }

.scroll-cont {
  height:100vh;
  /*scroll-snap-type : mandatory;*/
   scroll-snap-points-y: repeat(100vh);
   overflow: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}

section {
  /*height:100vh;*/
  scroll-snap-align:start;
    scroll-snap-stop: always;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:.5rem;
  position:relative;
  min-height: 100vh;
  object-fit: cover;
  /*background-color: darkorchid;*/
}

img{
  max-width: 85%;
  display: block;
  margin: 0 auto;
}


@media screen and (max-width: 450px) {
  img {max-width:inherit; }
}

