@import url("https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&display=swap");
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: "Sniglet", system-ui;
  font-size: 22px;
  font-weight: 400 !important;
  #content {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(#1d1d1d 0%, #393939 50%, #1d1d1d 100%);
  }

  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  background: black;
}
.content-tremblement{
  animation : tremblement 2s linear forwards
}
@keyframes tremblement{
  0%, 20%,40%,60%,80%{
    rotate: 0.8deg;
    scale : 0.99
  } 0%, 10%,30%,50%,70%,90%{
    rotate: -0.8deg;
    scale:1.05
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400 !important;
}
