body {
  margin: 0;
  text-align: center;
  font-family: "Zain", sans-serif;
  color: #b46d62;
  background: linear-gradient(white, #fae7e7);

  max-width: 100vw;
  max-height: 100vh;

  min-width: 100vw;
  min-height: 100vh;

  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;
}

a {
  text-decoration: none;
}

#top {
  margin-top: 10;
  padding-top: 3%;
}

.pp {
  border-radius: 100%;
  max-height: 200px;
}

h1 {
  color: #b46d62;
  font-family: "Orelega One", serif;
}

h2 {
  color: #b46d62;
}

h3 {
  font-style: italic;
  margin-bottom: 3%;
  font-weight: lighter;
}

p {
  padding: 20px;
}

.bouton {
  transition: 0.5s;
  color: white;
  background-color: #b46d62;
  border-radius: 2rem;
  border: none;
  width: 50%;
  height: 3rem;
  text-align: center;
}

.bouton:hover {
  scale: 1.2;
}

.box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 2em;  
  align-items: center;
}

.box :first-child {
  align-self: center;
}

.logo {
  align-content: center;
  max-height: 30%;
  z-index: 1;
  margin: 0;
  padding: 0;
}

#footersection {
  align-items: center;
}

.icons {
  height: 2.5rem;
  align-content: center;
}

/* footer animé */
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

ul {
  z-index: 1;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-container {
  height: 80vh;
}

.socials {
  z-index: 1;
  gap: 20px;
}

.socials a {
  z-index: 1;
  font-size: 24px;
}

.links {
  z-index: 1;
  gap: 10px;
}

.linksmenu:hover {
  text-decoration: underline;
}

.legal {
  z-index: 1;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(3) scaleX(5);
  transform-origin: bottom;
  box-sizing: border-box;
  display: block;
  pointer-events: none;
}

footer {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 80vh;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 20vh;
  color: #fae7e7;
  background-color: #fae7e7;

  flex-shrink: 0;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  padding-bottom: 20px;
  width: 100%;
}

@media (width > 420px) {
  section {
    align-items: center;
    padding-left: 0;
    gap: 20px;
  }

  .links {
    gap: 20px;
  }
}

@media (width < 420px) {
  .logo {
    max-width: 30%;
    align-content: center;
  }

  .background {
    position: inherit;
  }

  svg {
    position: inherit;
    transform: scaleY(2.5) scaleX(1.75);
  }

  footer {
    align-content: center;
  }
}

.testBackground {
  background-color: rebeccapurple;
  width: 100%;
  height: 100%;
}