@font-face {
  font-family: "sans";
  font-weight: 700;
  src: url(../fonts/sans.ttf);
}

@font-face {
  font-family: "one";
  font-weight: 400;
  src: url(../fonts/one.ttf);
}

@font-face {
  font-family: "one-bold";
  font-weight: 700;
  src: url(../fonts/one.ttf);
}


html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition: 0.1s ease all;
    font-family: 'one', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* cursor: none;
    pointer-events: none; */
    background: #000;
    color: black;
    cursor: none;
}

main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 850px;
  max-width: calc(100% - 40px);
}

*{
  padding: 0;
  margin: 0;
  user-select:none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

h1{
  font-family: 'sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 20px;
  max-width: 430px;
}
h3{
  font-family: 'sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 2px;
  max-width: 430px;
}

#logo{
  width: 260px;
  height: auto;
  margin-bottom: 120px;
  opacity: 0;
}
#logo > *{
  fill: white;
}

#image{
  width: 850px;
  height: 850px;
  border-radius: 20px;
  opacity: 0;
}

.infos{
  width: 850px;
  height: auto;
  background: white;
  padding: 24px;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}

#qrcode > img{
  width: 150px;
  height: auto;
}
.qr{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
#qr > p{
  text-align: center;
  margin-bottom: 6px;
}